Ejemplo n.º 1
0
 // C o n s t r u c t o r s
 public EfDailyRoutineRepository(AppDogDbContext context)
 {
     this.context = context;
 }
Ejemplo n.º 2
0
 // C o n s t r u c t o r s
 public EfVetVisitRepository(AppDogDbContext context)
 {
     this.context = context;
 }
Ejemplo n.º 3
0
 // C o n s t r u c t o r s
 public EfWalkRepository(AppDogDbContext context)
 {
     this.context = context;
 }
Ejemplo n.º 4
0
 // C o n s t r u c t o r s
 public EfDogRepository(AppDogDbContext context, SignInManager <IdentityUser> signinManager)
 {
     this.context       = context;
     this.signinManager = signinManager;
 }