/// <summary>
 /// Creator: Awaab Elamin
 /// Created: 2020/02/04
 /// Approver: Mohamed Elamin
 /// Construct assgined a fake data access to addoption application object
 /// </summary>
 /// <remarks>
 /// Updater: Mohamed Elamin
 /// Updated: 2020/04/21
 /// Update: Fixed comments format.
 /// </remarks>
 /// <param name="fakeReviewerAccessor"></param>
 public ReviewerManager(IAdoptionAccessor fakeReviewerAccessor)
 {
     adoptionAccessor = fakeReviewerAccessor;
 }
 public void TestSetup()
 {
     fakeReviewerAccessor = new FakeReviewerAccessor();
     reviewerManager      = new ReviewerManager(fakeReviewerAccessor);
 }
 /// <summary>
 /// Creator: Awaab Elamin
 /// Created: 2020/02/04
 /// Approver: Mohamed Elamin
 /// Default Constructor intial adotionAccessor to
 /// reviewer manager accessor and customer object
 /// </summary
 /// <remarks>
 /// Updater: Mohamed Elamin
 /// Updated: 2020/04/21
 /// Update: Fixed comments format
 /// </remarks>
 public ReviewerManager()
 {
     adoptionAccessor = new ReviewerAccessor();
     customer         = null;
 }