public AspDotNetControllerReader(ReflectionModelReader modelReader, AspDotNetOptions aspOptions, Options options, List <ITransferObject> transferObjects)
 {
     this.modelReader     = modelReader;
     this.aspOptions      = aspOptions;
     this.options         = options;
     this.transferObjects = transferObjects;
 }
 public SqliteModelReader(ReflectionModelReader modelReader, Options options)
 {
     this.modelReader = modelReader;
     this.options     = options;
 }
示例#3
0
 public void Initialize()
 {
     this.environment     = new GeneratorEnvironment();
     this.transferObjects = new List <ITransferObject>();
     this.reader          = new ReflectionModelReader(new Options(new List <IGlobalOptionsReader>()), this.transferObjects, this.environment);
 }
 public AspDotNetControllerReader(ReflectionModelReader modelReader)
 {
     this.modelReader = modelReader;
 }
 public void Initialize()
 {
     this.reader = new ReflectionModelReader();
 }