public OfficeLocationFacade(
     OfficeLocationRepository officeLocationRepository,
     IEmailClient client)
 {
     _officeLocationRepository = officeLocationRepository;
     _client = client;
 }
 public OfficeLocationRepositoryTests()
 {
     _officeLocationRepository = MasterFactory.GetOfficeLocationRepository();
 }