Example #1
0
        public Response <Patients> FindByDni(Patients patients)
        {
            Response <Patients> response = new Response <Patients>();
            Patients            Data     = new ADRepositoryPatient().FindByDni(patients);

            if (Data == null)
            {
                response.Success = false;
                response.Message = "Paciente no encontrado";
            }
            else
            {
                response.Success = true;
                response.Data    = Data;
            }
            return(response);
        }
Example #2
0
        public Response <Patients> CreatePatient(Patients patients)
        {
            Response <Patients> response = new Response <Patients>();
            Patients            Data     = new ADRepositoryPatient().Add(patients);

            if (Data == null)
            {
                response.Success = false;
                response.Message = "No se creo el Paciente";
            }
            else
            {
                response.Success = true;
                response.Data    = Data;
            }
            return(response);
        }
Example #3
0
        public Response <IList <Patients> > GetPatients(QueryParameters request)
        {
            Response <IList <Patients> > response = new Response <IList <Patients> >();
            Patients         patients             = new Patients();
            IList <Patients> listPatients         = new ADRepositoryPatient().Find(patients, request);

            if (listPatients.Count > 0)
            {
                response.Success = true;
                response.Data    = listPatients;
            }
            else
            {
                response.Success = false;
                response.Data    = listPatients;
            }
            return(response);
        }