public void Registro(string pNombre, string pApellido, string pMail, string pUsuario, string pPassword, RolBLL pRol) { this.BE = new UsuarioBE(); this.BE.Nombre = pNombre; this.BE.Apellido = pApellido; this.BE.Mail = pMail; this.BE.Usuario = pUsuario; this.BE.Password = pPassword; this.BE.Rol = pRol.BE; UsuarioDAL.AltaUsuario(this.BE); }