public async Task <IActionResult> GetPlanByCover(int coverId) { try { var res = await _itemService.GetPlanByCover(coverId); return(Ok(res)); } catch (Exception ex) { return(DefaultError(ex)); } }