예제 #1
0
 public Schema(SchemaStore store, Type modelType)
 {
     this.Store     = store ?? throw new ArgumentNullException(nameof(store));
     this.modelType = modelType ?? throw new ArgumentNullException(nameof(modelType));
 }
예제 #2
0
 public Schema(SchemaStore store, Type model)
 {
     this.Model = model ?? throw new ArgumentNullException(nameof(model));
     this.store = store ?? throw new ArgumentNullException(nameof(store));
 }