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