示例#1
0
        public ICollection <good> GetSale(long id)
        {
            var shop = _context.Shops.Find(id);

            if (shop == null)
            {
                return(null);
            }
            return(_context.GetSale(shop));
        }