public OfferCategoriesController(MerchantAppContext context)
 {
     _context = context;
 }
 public OffersController(MerchantAppContext context, IWebHostEnvironment hostEnvironment, SlugHelper helper)
 {
     _context         = context;
     _hostEnvironment = hostEnvironment;
     _helper          = helper;
 }
Example #3
0
 public MerchantsController(MerchantAppContext context, SlugHelper helper)
 {
     _context = context;
     _helper  = helper;
 }