public FacilityEmployeeController(ContextEntities context) : base(context)
 {
     context = _context;
     user    = new UserManager()
     {
         Name     = "default",
         Password = null
     };
     facilityEmployeeRepository = new FacilityEmployeeRepository(context);
 }
 public AdminUserController(ContextEntities context) : base(context)
 {
     context = _context;
     user    = new UserManager()
     {
         Name     = "defualt",
         Password = null
     };
     adminUserRepository        = new AdminUserRepository(context);
     websiteUserRepository      = new WebsiteUserRepository(context);
     productRepository          = new ProductRepository(context);
     reviewRepository           = new ReviewRepository(context);
     orderRepository            = new OrderRepository(context);
     dropOffFacilityRepository  = new DropOffFacilityRepository(context);
     facilityEmployeeRepository = new FacilityEmployeeRepository(context);
     flaggedOrderRepository     = new FlaggedOrderRepository(context);
     flaggedProductRepository   = new FlaggedProductRepository(context);
     flaggedReviewRepository    = new FlaggedReviewRepository(context);
     flaggedUserRepository      = new FlaggedUserRepository(context);
     productCategoryRepository  = new ProductCategoryRepository(context);
     productTypeRepository      = new ProductTypeRepository(context);
 }