mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 02:27:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			319 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			319 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace API.Interfaces
 | |
| {
 | |
|     public interface IUnitOfWork
 | |
|     {
 | |
|         ISeriesRepository SeriesRepository { get; }
 | |
|         IUserRepository UserRepository { get; }
 | |
|         ILibraryRepository LibraryRepository { get; }
 | |
|         Task<bool> Complete();
 | |
|         bool HasChanges();
 | |
|     }
 | |
| } |