Example #1
0
 public EventServices(PortalDbContext db)
 {
     _db = db;
 }
 public ItemRegistrationsController(PortalDbContext db, IEventServices svc, IShoppingCartService cartSvc, ApplicationUserManager userManager)
 {
     _db = db;
     _eventSvc = svc;
     _cartSvc = cartSvc;
     UserManager = userManager;
     //}
 }
Example #3
0
 public MembershipServices(PortalDbContext db)
 {
     _db = db;
 }
Example #4
0
 public ShoppingCartService(PortalDbContext db, IMembershipService memSvc)
 {
     _db = db;
     _memSvc = memSvc;
 }