Ejemplo n.º 1
0
        public UserEntity GetUser(string username, string Documento)
        {
            UserBL userbl = new UserBL();

            return(userbl.GetUser(username, Documento));
        }
Ejemplo n.º 2
0
        public UserEntity LoginUser(string nameuser, string password)
        {
            UserBL userBL = new UserBL();

            return(userBL.LoginUser(nameuser, password));
        }