示例#1
0
        public async Task <object> GetAllCategoriesAsync()
        {
            var om = await _dal.GetCategoriesAsync();

            return(om.Select(x => new { x.Id, x.Description }));
        }