Example #1
0
 public bool Cadastrar(EDITORA oEDITORA)
 {
     if (EditoraMetod.Cadastrar(oEDITORA))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Example #2
0
 public bool Alterar(EDITORA oEDITORA)
 {
     if (EditoraMetod.Alterar(oEDITORA))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Example #3
0
 public List <EDITORA> ListaTodasEditoras()
 {
     return(EditoraMetod.ListaTodasEditoras());
 }
Example #4
0
 public EDITORA SelecionarNome(string EDITORANome)
 {
     return(EditoraMetod.SelecionarNome(EDITORANome));
 }
Example #5
0
 public EDITORA Selecionar(int idEDITORA)
 {
     return(EditoraMetod.Selecionar(idEDITORA));
 }
Example #6
0
 public bool Deletar(int idEDITORA)
 {
     return(EditoraMetod.Deletar(idEDITORA));
 }