public ProductController(IStrBL strBL, IMapper mapper, StoreDBContext context)
 {
     _strBL   = strBL;
     _mapper  = mapper;
     _context = context;
 }
 public LocationController(IStrBL strBL, IMapper mapper, StoreDBContext context)
 {
     _strBL   = strBL;
     _mapper  = mapper;
     _context = context;
 }
 //public Customer _customer2;
 public CustomerController(IStrBL strBL, IMapper mapper)
 {
     _strBL  = strBL;
     _mapper = mapper;
 }
Exemple #4
0
 public ManagerController(IStrBL strBL, IMapper mapper)
 {
     _strBL  = strBL;
     _mapper = mapper;
 }