public static IEnumerable <Product> ShopDropDown() { using (var context = new SiteContext()) { return(context.Products.ToList()); } }
public static IEnumerable <Customer> ProfileImage() { using (var context = new SiteContext()) { return(context.Customers.ToList()); } }