public async Task <object> GetAllCategoriesAsync() { var om = await _dal.GetCategoriesAsync(); return(om.Select(x => new { x.Id, x.Description })); }