public void RealizarEmprestimo(int id, DateTime data, ILivroDado l, IPessoaDado p) { Id = id; DataEmprestimo = data; Livro = l; Pessoa = p; }
public IEmprestimoDado Emprestar(ILivroDado livro, IPessoaDado pessoa, IEmprestimoDado emprestimo, List <IEmprestimoDado> listaEmprestimo) { DateTime dataEmprestimo = DateTime.Now; emprestimo.RealizarEmprestimo(listaEmprestimo.Count, dataEmprestimo, livro, pessoa); return(emprestimo); }
public IEmprestimoDado BuscarLivroEmprestimo(ILivroDado livro, List <IEmprestimoDado> emprestimos) { return(emprestimos.Where(x => x.GetLivro() == livro).FirstOrDefault()); }
public IEmprestimoDado BuscarLivroEmprestimo(IEmprestimoDado emprestimo, ILivroDado livro, List <IEmprestimoDado> emprestimos) { return(emprestimo.BuscarLivroEmprestimo(livro, emprestimos)); }
public ILivroDado BuscarLivro(ILivroDado livro, int tombo, List <ILivroDado> listLivro) { return(livro.BuscarLivro(tombo, listLivro)); }