public ICollection <good> GetSale(long id) { var shop = _context.Shops.Find(id); if (shop == null) { return(null); } return(_context.GetSale(shop)); }