Ejemplo n.º 1
0
 public CategoryRepository(DinExApiContext dinExContext) : base(dinExContext)
 {
 }
Ejemplo n.º 2
0
 public Repository(DinExApiContext dinExContext)
 {
     this.dinExContext = dinExContext;
     DbSet             = dinExContext.Set <T>();
 }
Ejemplo n.º 3
0
 public SeederBaseService(DinExApiContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public LaunchRepository(DinExApiContext dinExContext) : base(dinExContext)
 {
 }
        //private ICategoryService _categoryService;
        //private IUserService _userService;

        public CategoryUserService(DinExApiContext context, ICategoryUserRepository categoryUserRepository)
        {
            _context = context;
            _categoryUserRepository = categoryUserRepository;
        }
Ejemplo n.º 6
0
 public CategoriesController(DinExApiContext context, ICategoryService categoryService, ICategoryUserService categoryUserService)
 {
     _context             = context;
     _categoryService     = categoryService;
     _categoryUserService = categoryUserService;
 }
 public PayMethodsController(DinExApiContext context)
 {
     _context = context;
 }
Ejemplo n.º 8
0
 public UserRepository(DinExApiContext context) : base(context)
 {
 }