예제 #1
0
        public PatientRecordModel GetMedicinesDropDown(PractitionerBaseViewModel vm)
        {
            PatientRecordModel result = new PatientRecordModel();

            if (vm != null)
            {
                PractitionerBusiness businessLayer = new PractitionerBusiness();
                result = businessLayer.GetMedicinesDropDown(vm.CompanyId);
            }

            return(result);
        }