コード例 #1
0
 protected BaseRepository(KatilContext context)
 {
     this.context = context;
     DbSet        = context.Set <T>();
 }
コード例 #2
0
 public UserRepository(KatilContext context)
     : base(context)
 {
 }
コード例 #3
0
 public FileRepository(KatilContext context)
     : base(context)
 {
 }
コード例 #4
0
 public SystemSettingsRepository(KatilContext context)
     : base(context)
 {
 }
コード例 #5
0
 public TokenRepository(KatilContext context)
     : base(context)
 {
 }
コード例 #6
0
ファイル: UnitOfWork.cs プロジェクト: nairi-abgaryan/Katil
 public UnitOfWork(KatilContext context)
 {
     _context = context;
 }