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