public CategoryRepository(DinExApiContext dinExContext) : base(dinExContext) { }
public Repository(DinExApiContext dinExContext) { this.dinExContext = dinExContext; DbSet = dinExContext.Set <T>(); }
public SeederBaseService(DinExApiContext context) { _context = context; }
public LaunchRepository(DinExApiContext dinExContext) : base(dinExContext) { }
//private ICategoryService _categoryService; //private IUserService _userService; public CategoryUserService(DinExApiContext context, ICategoryUserRepository categoryUserRepository) { _context = context; _categoryUserRepository = categoryUserRepository; }
public CategoriesController(DinExApiContext context, ICategoryService categoryService, ICategoryUserService categoryUserService) { _context = context; _categoryService = categoryService; _categoryUserService = categoryUserService; }
public PayMethodsController(DinExApiContext context) { _context = context; }
public UserRepository(DinExApiContext context) : base(context) { }