public UserStore(ICathedralKitchenRepository repo, CathedralKitchenContext ctx)
 {
     repository = repo;
     _ctx       = ctx;
 }
Exemple #2
0
 public HomeController(ICathedralKitchenRepository cathedralKitchenRepository, CathedralKitchenContext ctx, IEmailNotificationService emailNotificationService)
 {
     _emailNotificationService   = emailNotificationService;
     _cathedralKitchenRepository = cathedralKitchenRepository;
     _ctx = ctx;
 }
Exemple #3
0
 public CartController(ICathedralKitchenRepository cathedralKitchenRepository, CathedralKitchenContext ctx)
 {
     _cathedralKitchenRepository = cathedralKitchenRepository;
     _ctx = ctx;
 }