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

                return(Ok(item));
            }
            catch (Exception ex)
            {
                return(DefaultError(ex.Message));
            }
        }