0

I have a layer of Data like this to bring me all Admins:

  public List<Datos_Admin> SelectAllAdmin() 
    {
        return (from u in contexto.Datos_Admin select u).ToList() ;
    }

In my layer of Entities have this:

public class EDatos_Admin
{
    public int Id_Admin { get; set; }
    public string User_Name { get; set; }
    public char Password { get; set; }
    public string Nombre { get; set; }
    public string Ap_Paterno { get; set; }
    public string Ap_Materno { get; set; }
    public DateTime Fecha_Alta { get; set; }
    public DateTime Fecha_Modificacion { get; set; }
    public int UserAdmin_Modificacion { get; set; }
    public bool Activo { get; set; }

    public EDatos_Admin(int Id_Admin, string User_Name, char Password, string Nombre, string Ap_Paterno, string Ap_Materno, DateTime Fecha_Alta, DateTime Fecha_Modificacion, int UserAdmin_Modificacion, bool Activo)
    {
        this.Id_Admin = Id_Admin;
        this.User_Name = User_Name;
        this.Password = Password;
        this.Nombre = Nombre;
        this.Ap_Paterno = Ap_Paterno;
        this.Ap_Materno = Ap_Materno;
        this.Fecha_Alta = Fecha_Alta;
        this.Fecha_Modificacion = Fecha_Modificacion;
        this.UserAdmin_Modificacion = UserAdmin_Modificacion;
        this.Activo = Activo;

    }

    public EDatos_Admin()
    {
        // TODO: Complete member initialization
    }
}

And in my Bussines layer have this:

    public EDatos_Admin SeleccionaAllDatos_Admin()
    {

        foreach (var n in contexto.SelectAllAdmin())
        {
            listDatosAdmin = new EDatos_Admin()
            {
               Id_Admin = n.Id_Admin,
               User_Name = n.User_Name,

            };

        }
        return listDatosAdmin;

    }

In the datagridview only I want show me Id_Admin and User_Name but it doesn't. And when I review in debugging I can see the data but the datagridview doesn't work.

And I call the method SeleccionaAllDatos_Admin in my Bussines layer like this in the load form

dataGridView1.DataSource = new NDatos_Admin().SeleccionaAllDatos_Admin();

How can fixed? Thanks

0 Answers0