예제 #1
0
        public List <Pacientes> MostrarPacienteProfecional(Profecional profecional)
        {
            PacienteAD acesso = new PacienteAD();

            return(acesso.PacientesIdProfecional(profecional));
        }
예제 #2
0
        public Profecional Login(Profecional usuario)
        {
            ProfecionalAD acceso = new ProfecionalAD();

            return(acceso.Logear(usuario));
        }
예제 #3
0
        public void Update(Profecional profecional)
        {
            ProfecionalAD acceso = new ProfecionalAD();

            acceso.UpdateProfecional(profecional);
        }
예제 #4
0
        public Profecional ProfecionalID(Profecional profecional)
        {
            ProfecionalAD acesso = new ProfecionalAD();

            return(acesso.ProfecionalId(profecional));
        }
예제 #5
0
        public void Insertar(Profecional profecional)
        {
            ProfecionalAD acesso = new ProfecionalAD();

            acesso.InsertProfecional(profecional);
        }