예제 #1
0
 public TownService(ILibrarySystemContext context, IValidations validations)
     : base(context, validations)
 {
 }
예제 #2
0
 public BookService(ILibrarySystemContext librarySystemContext)
 {
     this.librarySystemContext = librarySystemContext;
 }
예제 #3
0
 public CategoryService(ILibrarySystemContext librarySystemContext)
 {
     this.librarySystemContext = librarySystemContext;
 }
예제 #4
0
 public UsersServices(ILibrarySystemContext context, IValidations validations)
     : base(context, validations)
 {
 }
예제 #5
0
 protected BaseServicesClass(ILibrarySystemContext context, IValidations validations)
 {
     this.context     = context ?? throw new ArgumentNullException(nameof(context));
     this.validations = validations ?? throw new ArgumentNullException(nameof(validations));
 }