public EmployeeRepository(ServiceQueueDbContext context)
     : base(context)
 {
 }
Ejemplo n.º 2
0
 public AppoinmentRepository(ServiceQueueDbContext context)
     : base(context)
 {
 }
Ejemplo n.º 3
0
 public Repository(ServiceQueueDbContext context)
 {
     this._Context = context;
 }
Ejemplo n.º 4
0
 public CustomerRepository(ServiceQueueDbContext context)
     : base(context)
 {
 }
 public ServicesRepository(ServiceQueueDbContext contex) : base(contex)
 {
 }
 public UnitOfWork(ServiceQueueDbContext context)
 {
     this._context = context;
 }