Exemplo n.º 1
0
 public AnimalBasicInfoRepository(VetManagementAppDbContext dbContext) : base(dbContext)
 {
     this._vetDbContext = dbContext;
 }
Exemplo n.º 2
0
 public CustomerRepository(VetManagementAppDbContext dbContext) : base(dbContext)
 {
     this._vetDbContext = dbContext;
 }
Exemplo n.º 3
0
 public UnitOfWork()
 {
     this._dbContext = new VetManagementAppDbContext();
 }
Exemplo n.º 4
0
 public UnitOfWork(VetManagementAppDbContext dbContext)
 {
     this._dbContext = dbContext;
 }
Exemplo n.º 5
0
 public AppointmentRepository(VetManagementAppDbContext dbContext) : base(dbContext)
 {
     this._vetDbContext = dbContext;
 }