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