Ejemplo n.º 1
0
 public UserStore(ICathedralKitchenRepository repo, CathedralKitchenContext ctx)
 {
     repository = repo;
     _ctx       = ctx;
 }
Ejemplo n.º 2
0
 public HomeController(ICathedralKitchenRepository cathedralKitchenRepository, CathedralKitchenContext ctx, IEmailNotificationService emailNotificationService)
 {
     _emailNotificationService   = emailNotificationService;
     _cathedralKitchenRepository = cathedralKitchenRepository;
     _ctx = ctx;
 }
Ejemplo n.º 3
0
 public CartController(ICathedralKitchenRepository cathedralKitchenRepository, CathedralKitchenContext ctx)
 {
     _cathedralKitchenRepository = cathedralKitchenRepository;
     _ctx = ctx;
 }