示例#1
0
 public bool Cadastrar(GENERO oGENERO)
 {
     if (GeneroMetod.Cadastrar(oGENERO))
     {
         return true;
     }
     else
     {
         return false;
     }
 }
示例#2
0
 public bool Alterar(GENERO oGENERO)
 {
     if (GeneroMetod.Alterar(oGENERO))
     {
         return true;
     }
     else
     {
         return false;
     }
 }
示例#3
0
 public GENERO SelecionarDescricao(string GENERODesc)
 {
     return GeneroMetod.SelecionarDescricao(GENERODesc);
 }
示例#4
0
 public GENERO Selecionar(int idGENERO)
 {
     return GeneroMetod.Selecionar(idGENERO);
 }
示例#5
0
 public List<GENERO> ListaTodosGeneros()
 {
     return GeneroMetod.ListaTodosGeneros();
 }
示例#6
0
        public bool Deletar(int idGENERO)
        {
            return GeneroMetod.Deletar(idGENERO);

        }