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