/// <summary>
 /// Creator: Mohamed Elamin
 /// Created: 2020/02/29
 /// Approver: Awaab Elamin, 2020/03/03
 /// This is the Constructor method for InHome Inspection
 /// Appointment Decision Manager.
 /// </summary>
 /// <remarks>
 /// Updater: Mohamed Elamin
 /// Updated: 2020/04/22
 /// Update: Fixed Comments format.
 /// </remarks>
 /// <param name="adoptionInterviewerAccessor"></param>
 public AdoptionInterviewerManager(IAdoptionInterviewerAccessor adoptionInterviewerAccessor)
 {
     _adoptionInterviewerAccessor = adoptionInterviewerAccessor;
 }
 /// <summary>
 /// Creator: Mohamed Elamin
 /// Created: 2020/02/29
 /// Approver: Awaab Elamin, 2020/03/03
 /// This is no argument Constructor method.
 /// </summary>
 /// <remarks>
 /// Updater: Mohamed Elamin
 /// Updated: 2020/04/22
 /// Update: Fixed Comments format.
 /// </remarks>
 public AdoptionInterviewerManager()
 {
     _adoptionInterviewerAccessor = new AdoptionInterviewerAccessor();
 }
 public void TestSetup()
 {
     _fakeAdoptionInterviewerAccessor = new FakeAdoptionInterviewerAccessor();
     _adoptionInterviewerManager      = new AdoptionInterviewerManager(_fakeAdoptionInterviewerAccessor);
 }