示例#1
0
 public VRController(YarrowContext db, IHostEnvironment env)
 {
     this.db           = db;
     serializerOptions = new JsonSerializerOptions
     {
         PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
         WriteIndented        = env.IsDevelopment()
     };
 }
示例#2
0
 public YarrowVRAdminController(IWebHostEnvironment env, YarrowContext db)
 {
     this.env = env;
     this.db  = db;
 }