public AdminRepository(OperationSchedulerContext context, IOptions <AppSettings> appSettings)
 {
     this.context = context;
     _appSettings = appSettings.Value;
 }
示例#2
0
 public CustomerRepository(OperationSchedulerContext context)
 {
     this.context = context;
 }
 public AppointmentTypeRepository(OperationSchedulerContext context)
 {
     this.context = context;
 }
示例#4
0
 public UnitOfWork(OperationSchedulerContext context)
 {
     this.context = context;
 }
 public TechnicianRepository(OperationSchedulerContext context)
 {
     this.context = context;
 }