Beispiel #1
0
 public SupplierService(
     ChocolateDbContext context,
     IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #2
0
 public CartController(
     ChocolateDbContext context,
     IConfiguration configuration)
 {
     _context       = context;
     _configuration = configuration;
 }
Beispiel #3
0
 //This will handle our login validation and registration of our user identity
 public AccountController(
     UserManager <IdentityUser> userManager,
     SignInManager <IdentityUser> signInManager,
     ChocolateDbContext context,
     ICustomerService service)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _context       = context;
     _service       = service;
 }
Beispiel #4
0
 public SectorDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #5
0
 public ProductDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #6
0
 public CandidateDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #7
0
 public LeaveService(ChocolateDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #8
0
 public DepartmentService(ChocolateDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #9
0
 public CustomerService(ChocolateDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #10
0
 public WarehouseDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #11
0
 public OrderService(ChocolateDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
Beispiel #12
0
 public PositionDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #13
0
 public MeetingService(ChocolateDbContext context)
 {
     _context = context;
 }
Beispiel #14
0
 public CustomerDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #15
0
 public PositionService(ChocolateDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #16
0
 public MeetingDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #17
0
 public BaseApiController(ChocolateDbContext context)
 {
     _context = context;
 }
Beispiel #18
0
 public PositionController(ChocolateDbContext context, IPositionService service)
 {
     _context = context;
     _service = service;
 }
Beispiel #19
0
 public LeaveDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #20
0
 public DiscountDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #21
0
 public OrdersDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #22
0
 public CartDataController(ChocolateDbContext context)
 {
     _context = context;
 }
Beispiel #23
0
 public AdministrationDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #24
0
 public OfferItemDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #25
0
 public OfferItemService(ChocolateDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #26
0
 public DiscountService(ChocolateDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #27
0
 public EmployeeDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #28
0
 public PurchaseDataController(ChocolateDbContext context) : base(context)
 {
 }
Beispiel #29
0
 public Repository(ChocolateDbContext context)
 {
     _context = context;
     _set     = _context.Set <TEntity>();
 }
Beispiel #30
0
 public WarehouseService(ChocolateDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }