Пример #1
0
        public async Task <IActionResult> GetAllPlaneTypes()
        {
            var planeTypes = await service.GetAllPlaneTypesInfoAsync();

            return(planeTypes == null?NotFound("There is no information about plane types yet!") as IActionResult
                   : Ok(mapper.Map <IEnumerable <PlaneTypeDTO> >(planeTypes)));
        }