Exemple #1
0
        public async Task <bool> DeleteAssetSV(string asssetID)
        {
            try
            {
                bool check = await _sliceRepository.DeleteAsset(asssetID);

                if (check == true)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            catch (DbUpdateException)
            {
                throw;
            }
        }