Пример #1
0
 public virtual void DeleteAllBusinessRules(string modelId)
 {
     try
     {
         Task.Run(async() => await RecommendationsRepository.DeleteAllBusinessRulesAsync(modelId));
     }
     catch (Exception ex)
     {
         Logger.Error("RecommendationsService.DeleteAllBusinessRules failed", this, ex);
     }
 }