Ejemplo n.º 1
0
 ///<summary>The supplied payment plan should already have been saved in the database.</summary>
 public FormPayPlan(Patient patCur,PayPlan payPlanCur)
 {
     //
     // Required for Windows Form Designer support
     //
     InitializeComponent();
     PatCur=patCur.Copy();
     PayPlanCur=payPlanCur.Copy();
     FamCur=Patients.GetFamily(PatCur.PatNum);
     SubList=InsSubs.RefreshForFam(FamCur);
     InsPlanList=InsPlans.RefreshForSubList(SubList);
     Lan.F(this);
 }
Ejemplo n.º 2
0
		///<summary>The supplied payment plan should already have been saved in the database.</summary>
		public FormPayPlan(Patient patCur,PayPlan payPlanCur){
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();
			PatCur=patCur.Copy();
			PayPlanCur=payPlanCur.Copy();
			FamCur=Patients.GetFamily(PatCur.PatNum);
			SubList=InsSubs.RefreshForFam(FamCur);
			InsPlanList=InsPlans.RefreshForSubList(SubList);
			FormPayPlanOpts=new FormPaymentPlanOptions(PayPlanCur.PaySchedule);
			_formPayPlanRecalculate=new FormPayPlanRecalculate();
			Lan.F(this);
		}