コード例 #1
0
 public EmployeeRepository(ServiceQueueDbContext context)
     : base(context)
 {
 }
コード例 #2
0
 public AppoinmentRepository(ServiceQueueDbContext context)
     : base(context)
 {
 }
コード例 #3
0
 public Repository(ServiceQueueDbContext context)
 {
     this._Context = context;
 }
コード例 #4
0
 public CustomerRepository(ServiceQueueDbContext context)
     : base(context)
 {
 }
コード例 #5
0
 public ServicesRepository(ServiceQueueDbContext contex) : base(contex)
 {
 }
コード例 #6
0
 public UnitOfWork(ServiceQueueDbContext context)
 {
     this._context = context;
 }