コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="StudentsController"/> class.
 /// </summary>
 /// <param name="ctx">
 /// The ctx.
 /// </param>
 public StudentsController(DemoContext ctx)
 {
     this.ctx = ctx;
 }
コード例 #2
0
ファイル: Seeder.cs プロジェクト: maxmantz/EF7-ManyToManyBug
 public Seeder(DemoContext ctx, ILogger<Seeder> logger)
 {
     this.ctx = ctx;
     this.logger = logger;
 }