public ItemsController(FastFoodContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Esempio n. 2
0
 public InitEntitiesHelper(FastFoodContext ffContext)
 {
     this.ffContext = ffContext;
 }
Esempio n. 3
0
 public StoreInvoicingRepository(FastFoodContext context)
 {
     _context = context;
 }
 public EmployeesController(FastFoodContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Esempio n. 5
0
 public CategoryRepository(FastFoodContext db)
 {
     _db = db;
 }
 public CategoryRepository(FastFoodContext context)
 {
     _context = context;
 }
Esempio 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;
 }
Esempio n. 10
0
 public AuthenticationService(FastFoodContext ffContext)
 {
     this.ffContext = ffContext;
 }
Esempio n. 11
0
        public FastFoodController(FastFoodContext context)

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

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