Example #1
0
 /// <summary>
 /// Creator: Mohamed Elamin
 /// Created: 2020/02/29
 /// Approver: Awaab Elamin, 2020/02/21
 /// This is the Constructor method for Interviewer page
 /// </summary>
 /// <remarks>
 /// Updater Name
 /// Updated: yyyy/mm/dd
 /// Update: ()
 /// </remarks>
 /// <param name="adoptionAppointment"></param>
 /// <param name="adoptionInterviewerManager"></param>
 public pgAdoptionInterviewerNotes(AdoptionAppointment adoptionAppointment,
                                   IAdoptionInterviewerManager adoptionInterviewerManager)
 {
     InitializeComponent();
     _adoptionAppointment        = adoptionAppointment;
     _adoptionInterviewerManager = adoptionInterviewerManager;
 }
        /// <summary>
        /// Creator: Mohamed Elamin
        /// Created: 2020/02/29
        /// Approver: Awaab Elamin, 2020/03/03
        /// This This constructor method for In-Home Interviewer page.
        /// </summary>
        /// <remarks>
        /// Updater Name
        /// Updated: yyyy/mm/dd
        /// Update: ()
        /// </remarks>

        public pgAdoptionInterviewer()
        {
            InitializeComponent();
            _adoptionInterviewerManager = new AdoptionInterviewerManager();
        }
Example #3
0
 /// <summary>
 /// Creator: Mohamed Elamin
 /// Created: 2020/02/29
 /// Approver: Awaab Elamin, 2020/02/21
 /// This is the Constructor method for Interviewer pag.
 /// </summary>
 /// <remarks>
 /// Updater Name
 /// Updated: yyyy/mm/dd
 /// Update: ()
 /// </remarks>
 public pgAdoptionInterviewerNotes(IAdoptionInterviewerManager adoptionInterviewerManager)
 {
     InitializeComponent();
     _adoptionInterviewerManager = adoptionInterviewerManager;
     _addMode = true;
 }