예제 #1
0
 protected IMap <T> Setup <T>()
 {
     this.Dirty();
     return(ConfigurationHelper.Setup <T>(this, this.mappedTypes));
 }
예제 #2
0
 protected IConfiguration AddNamespaceOf <T>()
 {
     this.Dirty();
     ConfigurationHelper.AddNamespaceOf <T>(this, this.mappedTypes);
     return(this);
 }
예제 #3
0
 public bool HasMap(Type type)
 {
     return(ConfigurationHelper.HasMap(type, this.mappedTypes));
 }
예제 #4
0
 protected IConfiguration Add(IEnumerable <Type> types)
 {
     this.Dirty();
     ConfigurationHelper.Add(this, this.mappedTypes, types);
     return(this);
 }
예제 #5
0
 public IMap GetMap(Type type)
 {
     return(ConfigurationHelper.GetMap(type, this.mappedTypes));
 }