/// <summary>
 /// Default c'tor with predefined Services
 /// </summary>
 public PredefinedServiceFacade()
 {
     RequestService            = new RequestService();
     RequestParameterService   = new UrlRequestParameterService();
     MappingService            = new JsonMapperService();
     GeolocationMappingService = new GoogleGeolocationMappingService();
     CachingService            = new CachingService();
     SerializationService      = new JsonSerializationService();
     ThreadService             = new ThreadService();
 }
 /// <summary>
 /// Default c'tor with predefined Services
 /// </summary>
 public PredefinedServiceFacade()
 {
     RequestService = new RequestService();
     RequestParameterService = new UrlRequestParameterService();
     MappingService = new JsonMapperService();
     GeolocationMappingService = new GoogleGeolocationMappingService();
     CachingService = new CachingService();
     SerializationService = new JsonSerializationService();
     ThreadService = new ThreadService();
     MailService = new SystemNetMail();
 }