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