Exemplo n.º 1
0
 public DevolucaoForm()
 {
     InitializeComponent();
     emprestimoDao = new Model.EmprestimoDao();
     emprestimo    = new Model.Emprestimo();
     itemDao       = new Model.ItemDao();
 }
 public EmprestimoForm(App.CrudOpt opt)
 {
     InitializeComponent();
     this.opt         = opt;
     emprestimoDao    = new Model.EmprestimoDao();
     itemDao          = new Model.ItemDao();
     livroDao         = new Livro.Model.LivroDao();
     alunoDao         = new Pessoa.Model.AlunoDao();
     livrosEmprestimo = new List <Livro.Model.Livro>();
 }
Exemplo n.º 3
0
 public EmprestimoValidator()
 {
     emprestimoDao = new Model.EmprestimoDao();
 }