Exemple #1
0
 public async Task RemoveAsync(int id)
 {
     try
     {
         await _dao.Delete(id);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }