예제 #1
0
파일: VehicleBo.cs 프로젝트: alexzipps/jobs
 public async Task RemoveAsync(int id)
 {
     try
     {
         await _dao.Delete(id);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }