public bool CreateGenero(Genero g)
 {
     if (g.Create() == 1)
     {
         Generos.Add(g);
         return(true);
     }
     return(false);
 }