public ClientService(IClientMockRepository clientRepository)
 {
     this.clientRepository = clientRepository;
 }
 public AggregatedDataService(IClientMockRepository clientRepository, IAddressMockRepository addressRepository, ISysStateMockRepository sysStateRepository)
 {
     this.clientRepository   = clientRepository;
     this.addressRepository  = addressRepository;
     this.sysStateRepository = sysStateRepository;
 }