public void Delete(int idEmprestimo) { DAL.Emprestimo dalEmprestimo = new DAL.Emprestimo(); dalEmprestimo.Delete(idEmprestimo); }
public void Update(MODEL.Emprestimo emprestimo) { DAL.Emprestimo dalEmprestimo = new DAL.Emprestimo(); dalEmprestimo.Update(emprestimo); }
public List <MODEL.Emprestimo> Select() { DAL.Emprestimo dalEmprestimo = new DAL.Emprestimo(); return(dalEmprestimo.Select()); }
public void Insert(MODEL.Emprestimo emprestimo) { DAL.Emprestimo dalEmprestimo = new DAL.Emprestimo(); dalEmprestimo.Insert(emprestimo); }
public void Update(MODEL.Emprestimo emprestimo) { DAL.Emprestimo dalEmp = new DAL.Emprestimo(); dalEmp.UPDATE(emprestimo); }