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