public AppointmentRepository()
        {
            this.groomingContext = new GroomingContext();

        }
 public ServiceRepository()
 {
     this.groomingContext = new GroomingContext();
 }
Exemple #3
0
 public OwnerRepository()
 {
     this.groomingContext = new GroomingContext();
 }
 public GenericRepository(GroomingContext _context)
 {
     this._context = _context;
     table         = _context.Set <T>();
 }
 public GenericRepository()
 {
     this._context = new GroomingContext();
     table         = _context.Set <T>();
 }
Exemple #6
0
 public PetRepository()
 {
     this.groomingContext = new GroomingContext();
 }