コード例 #1
0
 public ThesisGenerator(IRandomGenerator generator, IThesesSystemDbContext companyContext)
     : base(generator, companyContext, MaxCount)
 {
 }
コード例 #2
0
 public ThesisThemeGenerator(IRandomGenerator generator, IThesesSystemDbContext companyContext)
     : base(generator, companyContext, MaxCount)
 {
 }
コード例 #3
0
ファイル: FakeData.cs プロジェクト: TishoAngelov/ThesesSystem
 public FakeData(IThesesSystemDbContext context)
 {
     this.context = context;
 }
コード例 #4
0
 public SpecialtyGenerator(IRandomGenerator generator, IThesesSystemDbContext companyContext)
     : base(generator, companyContext, MaxCount)
 {
 }
コード例 #5
0
 public TableGenerator(IRandomGenerator generator, IThesesSystemDbContext context, int count)
 {
     this.Generator = generator;
     this.Count = count;
     this.Context = context;
 }
コード例 #6
0
 public TableGenerator(IRandomGenerator generator, IThesesSystemDbContext context, int count)
 {
     this.Generator = generator;
     this.Count     = count;
     this.Context   = context;
 }
コード例 #7
0
 public DeletableEntityRepository(IThesesSystemDbContext context)
     : base(context)
 {
 }