コード例 #1
0
 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;
 }
コード例 #2
0
 public Leitor()
 {
     this.id        = 0;
     this.nome      = "";
     this.cpf       = "";
     this.endereco  = "";
     this.dataNasc  = Convert.ToDateTime("01/01/2000");
     this.atendente = null;
 }
コード例 #3
0
 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;
 }