Ejemplo n.º 1
0
 public Configuration()
 {
     ConnectionString = "";
     ProviderName = "";
     ParsingRules = new ConcurrentDictionary<string, string>();
     CacheService =new DefaultCacheService();
     CurrentContextMode = CurrentContextModes.Web;
 }
Ejemplo n.º 2
0
 public Configuration WithContextModeOf(CurrentContextModes requestedContextType)
 {
     this.CurrentContextMode = requestedContextType;
     return this;
 }