Exemplo n.º 1
0
        public BookingMV openbookingCreate(BookingMV model = null)
        {
            LookupBussiness look = new LookupBussiness();

            if (model == null)
            {
                model = new BookingMV();
            }

            model.PatientList = look.fillpatient();
            model.SpecList    = look.fillspec();

            return(model);
        }
        public MedicalFilesMV openPatientCreate(MedicalFilesMV model = null)
        {
            LookupBussiness look = new LookupBussiness();

            if (model == null)
            {
                model = new MedicalFilesMV();
            }



            model.patientlist = look.fillpatient();


            return(model);
        }