public void CreateNewApplicant() { Mode = FormMode.CreateNew; Applicant = new DAL.Applicant(); InitializeControls(); MdiParent = MyForms.GetForm <ParentForm>(); Show(); }
public void UpdateApplicant(DAL.Applicant applicant) { Mode = FormMode.Update; Applicant = applicant; InitializeControls(); ShowApplicantInControls(); MdiParent = MyForms.GetForm <ParentForm>(); Show(); }