Exemplo n.º 1
0
 public void DeleteRequest(RequestEntity entity)
 {
     try
     {
         _requestRepository.Delete(entity.ToDalRequest());
         _unitOfWork.Commit();
     }
     catch (Exception exception)
     {
         Log.LogError(exception);
     }
 }