/// <summary>
 /// Initializes a new instance of the SearchManager class.
 /// </summary>
 /// <param name="personsPartyService">Instance of PersonsPartyService</param>
 public SearchManager(PersonsPartyService personsPartyService)
 {
     this.personsPartyService = personsPartyService;
 }
 public PersonPartyServiceTest()
 {
     this.portDebarkAuthorizationDetailServiceMock = new Mock<IPortDebarkAuthorizationService>();
     this.personsPartyManager = DIContainer.Instance.Resolve<PersonsPartyManager>();
     this.target = new PersonsPartyService(this.personsPartyManager);
 }