public TokensController(DeliveryTokenDB context, ITokenDetailService tokenService)
 {
     _context      = context;
     _tokenService = tokenService;
 }
Example #2
0
 public CustomerService(DeliveryTokenDB context, IEmailService mailService)
 {
     _context     = context;
     _mailService = mailService;
 }
Example #3
0
 public CustomersController(DeliveryTokenDB context, ICustomerService customerService)
 {
     _context         = context;
     _customerService = customerService;
 }
Example #4
0
 public OrderService(DeliveryTokenDB context)
 {
     _context = context;
 }
Example #5
0
 public TokenDetailService(DeliveryTokenDB context)
 {
     _context = context;
 }
Example #6
0
 public OrdersController(DeliveryTokenDB context, IOrderService order)
 {
     _context      = context;
     _orderService = order;
 }