Exemplo n.º 1
0
 public UserRepositorie(PetConsolContext ctx)
 {
     _ctx = ctx;
 }
 public PetColorDBRepository(PetConsolContext ctx)
 {
     _ctx = ctx;
 }
Exemplo n.º 3
0
 public PetDBRepository(PetConsolContext ctx, IOwnerRepository ownerRepo)
 {
     _ctx       = ctx;
     _ownerRepo = ownerRepo;
 }
Exemplo n.º 4
0
 public OwnerDBRepository(PetConsolContext ctx)
 {
     _ctx = ctx;
 }