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