Exemple #1
0
        public async Task <IActionResult> GetPlanByCover(int coverId)
        {
            try
            {
                var res = await _itemService.GetPlanByCover(coverId);

                return(Ok(res));
            }
            catch (Exception ex)
            {
                return(DefaultError(ex));
            }
        }