Exemplo n.º 1
0
 public ApplicationServiceCountry(IServiceCountry serviceCountry,
                                  IMapperCountry mapperCountry)
 {
     _serviceCountry = serviceCountry;
     _mapperCountry  = mapperCountry;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Set the Country instane with injected instance.
 /// </summary>
 /// <param name="injectedServiceCountry">injected instance</param>
 public ServiceCountryClient(IServiceCountry injectedServiceCountry)
 {
     _serviceCountry = injectedServiceCountry;
 }