Ejemplo n.º 1
0
        public async Task DeleteAsync(ResourceModel resourceModel)
        {
            if (resourceModel is null)
            {
                return;
            }
            await cloudinaryService.DeleteAsync(resourceModel.PublicId);

            await resourceCrudService.DeleteAsync(resourceModel.Id);
        }