public Leitor(int id, string nome, string cpf, string endereco, DateTime dataNasc, Atendente atendente) { this.id = id; this.nome = nome; this.cpf = cpf; this.endereco = endereco; this.dataNasc = dataNasc; this.atendente = atendente; }
public Leitor() { this.id = 0; this.nome = ""; this.cpf = ""; this.endereco = ""; this.dataNasc = Convert.ToDateTime("01/01/2000"); this.atendente = null; }
public Emprestimo(int id, DateTime dataEmp, Pagamento pagamento, Leitor leitor, DateTime dataPrevistaDevol, Atendente atendente, string situacao, DateTime dataDevolucao, List <Exemplar> exemplar) { Id = id; DataEmp = dataEmp; Pagamento = pagamento; Leitor = leitor; DataPrevistaDevol = dataPrevistaDevol; Atendente = atendente; Situacao = situacao; DataDevolucao = dataDevolucao; Exemplar = exemplar; }