public ItemsController(FastFoodContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemplo n.º 2
0
 public InitEntitiesHelper(FastFoodContext ffContext)
 {
     this.ffContext = ffContext;
 }
Exemplo n.º 3
0
 public StoreInvoicingRepository(FastFoodContext context)
 {
     _context = context;
 }
 public EmployeesController(FastFoodContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemplo n.º 5
0
 public CategoryRepository(FastFoodContext db)
 {
     _db = db;
 }
Exemplo n.º 6
0
 public CategoryRepository(FastFoodContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public ProductTypeService(FastFoodContext ffContext)
 {
     this.ffContext = ffContext;
 }
 public EmployeeService(FastFoodContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
 public PedidoRepository(FastFoodContext context)
 {
     _context = context;
 }
Exemplo n.º 10
0
 public AuthenticationService(FastFoodContext ffContext)
 {
     this.ffContext = ffContext;
 }
Exemplo n.º 11
0
        public FastFoodController(FastFoodContext context)

        {
            Context = context;
        }
Exemplo n.º 12
0
 public RoleService(FastFoodContext ffContext)
 {
     this.ffContext = ffContext;
 }
Exemplo n.º 13
0
 public StatisticService(FastFoodContext ffContext)
 {
     this.ffContext = ffContext;
 }
Exemplo n.º 14
0
 public ProductsController(FastFoodContext context)
 {
     _context = context;
 }
 public PositionService(FastFoodContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
Exemplo n.º 16
0
 //constructor dependency injection
 public OrderRepository(FastFoodContext db)
 {
     _db = db;
 }
Exemplo n.º 17
0
 public DataBaseController(FastFoodContext ffContext)
 {
     dbInitHelper = new DatabaseInitHelper(ffContext);
 }
Exemplo n.º 18
0
 public CustomerRepository(FastFoodContext db)
 {
     _db = db;
 }
Exemplo n.º 19
0
 public ProductsRepository(FastFoodContext context)
 {
     this._context = context;
 }
Exemplo n.º 20
0
 public AuthenRepository(FastFoodContext context, IMemoryCache cache, ILogger <AuthenRepository> logger)
 {
     _context = context;
     _cache   = cache;
     _logger  = logger;
 }
Exemplo n.º 21
0
 public OrdersController(FastFoodContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 22
0
 public MenuRepository(FastFoodContext db)
 {
     _db = db;
 }
 public OrderService(FastFoodContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
Exemplo n.º 24
0
 public UserService(FastFoodContext ffContext)
 {
     this.ffContext = ffContext;
 }
 public CategoryService(FastFoodContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
Exemplo n.º 26
0
 public PositionsController(FastFoodContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemplo n.º 27
0
        public HomeController(ILogger <HomeController> logger, FastFoodContext context)
        {
            _context = context;

            _logger = logger;
        }
Exemplo n.º 28
0
 public CategoriesController(FastFoodContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemplo n.º 29
0
 public DatabaseInitHelper(FastFoodContext ffContext)
 {
     initHelper   = new InitEntitiesHelper(ffContext);
     removeHelper = new RemoveEntitiesHelper(ffContext);
 }