Exemple #1
0
 public Emprestimo AddEmprestimo(Emprestimo emprestimo)
 {
     try
     {
         emprestimo = emprestimoDAO.Add(emprestimo);
     }
     catch (Exception e)
     {
         throw new Exception(e.Message);
     }
     return(emprestimo);
 }