예제 #1
0
 public void Delete(int idEmprestimo)
 {
     DAL.Emprestimo dalEmprestimo = new DAL.Emprestimo();
     dalEmprestimo.Delete(idEmprestimo);
 }
예제 #2
0
 public void Update(MODEL.Emprestimo emprestimo)
 {
     DAL.Emprestimo dalEmprestimo = new DAL.Emprestimo();
     dalEmprestimo.Update(emprestimo);
 }
예제 #3
0
 public List <MODEL.Emprestimo> Select()
 {
     DAL.Emprestimo dalEmprestimo = new DAL.Emprestimo();
     return(dalEmprestimo.Select());
 }
예제 #4
0
 public void Insert(MODEL.Emprestimo emprestimo)
 {
     DAL.Emprestimo dalEmprestimo = new DAL.Emprestimo();
     dalEmprestimo.Insert(emprestimo);
 }
예제 #5
0
 public void Update(MODEL.Emprestimo emprestimo)
 {
     DAL.Emprestimo dalEmp = new DAL.Emprestimo();
     dalEmp.UPDATE(emprestimo);
 }