/// <summary>
 /// Método desusado para agregar un nuevo objeto al EntitySet Perfiles. Considere la posibilidad de usar el método .Add de la propiedad ObjectSet&lt;T&gt; asociada.
 /// </summary>
 public void AddToPerfiles(Perfil perfil)
 {
     base.AddObject("Perfiles", perfil);
 }
 /// <summary>
 /// Crear un nuevo objeto Perfil.
 /// </summary>
 /// <param name="id">Valor inicial de la propiedad id.</param>
 public static Perfil CreatePerfil(global::System.Int32 id)
 {
     Perfil perfil = new Perfil();
     perfil.id = id;
     return perfil;
 }