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

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