Example #1
0
 public SlideService(MadamDbContext context)
 {
     _context = context;
 }
 public CategoryService(MadamDbContext context)
 {
     _context = context;
 }
Example #3
0
 public LanguageService(MadamDbContext context,
                        IConfiguration config)
 {
     _config  = config;
     _context = context;
 }
 public ProductService(MadamDbContext context, IStorageService storageService)
 {
     _context        = context;
     _storageService = storageService;
 }