Пример #1
0
        public IActionResult Get(int id)
        {
            var dto = Service.Get(id);

            if (dto == null)
            {
                return(NotFound());
            }
            return(Ok(dto));
        }
 public TEntityDto Get(TKey id, [FromQuery] string include)
 {
     return(appService.Get(id, include));
 }