Exemplo n.º 1
0
 public UserRepositoryImpl(FoodTrackingDbContext context)
     : base(context)
 {
     foodTrackingDbContext = context;
 }
Exemplo n.º 2
0
 public TreatmentRepositoryImpl(FoodTrackingDbContext dbContext)
     : base(dbContext)
 {
     _dbContext = dbContext;
 }
 public ProductRepositoryImpl(FoodTrackingDbContext context) : base(context)
 {
     foodTrackerDbContext = context;
 }
Exemplo n.º 4
0
 public UserRepositoryImpl(FoodTrackingDbContext dbContext)
     : base(dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 5
0
 public TransactionRepositoryImpl(FoodTrackingDbContext _dbContext, IUserRepository userRepository) : base(_dbContext)
 {
     UserRepo = userRepository;
 }
Exemplo n.º 6
0
 public FeedingFoodRepositoryImpl(FoodTrackingDbContext context) : base(context)
 {
     foodTrackerDbContext = context;
 }
Exemplo n.º 7
0
 public PremisesTypeRepositoryImpl(FoodTrackingDbContext dbContext) : base(dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 8
0
 public VaccineRepositoryImpl(FoodTrackingDbContext context) : base(context)
 {
     foodTrackerDbContext = context;
 }
Exemplo n.º 9
0
 public RoleRepositoryImpl(FoodTrackingDbContext context)
     : base(context)
 {
     contex = context;
 }
Exemplo n.º 10
0
 public FoodDetailTypeRepositoryImpl(FoodTrackingDbContext dbContext)
     : base(dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 11
0
 public ProviderFoodRepositoryImpl(FoodTrackingDbContext _dbContext) : base(_dbContext)
 {
 }
Exemplo n.º 12
0
 public TransactionStatusRepositoryImpl(FoodTrackingDbContext _dbContext) : base(_dbContext)
 {
 }
Exemplo n.º 13
0
 public DistributorFoodRepositoryImpl(FoodTrackingDbContext context) : base(context)
 {
     foodTrackerDbContext = context;
 }
Exemplo n.º 14
0
 public CategoryRepositoryImpl(FoodTrackingDbContext context) : base(context)
 {
     foodTrackerDbContext = context;
 }
Exemplo n.º 15
0
 public RegisterInfoRepositoryImpl(FoodTrackingDbContext context) : base(context)
 {
     foodTrackerDbContext = context;
 }