Exemplo n.º 1
0
 public void Delete(int idFormulario)
 {
     try
     {
         repository.Delete(idFormulario);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Exemplo n.º 2
0
 public void Delete(int id)
 {
     _formularioRepository.Delete(id);
 }