Esempio n. 1
0
 public async Task UpdateKbArticle(Model.KbArticles model)
 {
     try
     {
         await db.UpdateAsync(model);
     }
     catch (Exception ex)
     {
         Log.SaveLog("UpdateKbArticle", ex);
     }
 }
Esempio n. 2
0
 public async Task UpdateKbArticle(Model.KbArticles model)
 {
     try
     {
         await db.UpdateAsync(model);
     }
     catch (Exception ex)
     {
         Crashes.TrackError(ex);
     }
 }