示例#1
0
 public JobTitleRepository(ListenThenContext context) : base(context)
 {
 }
 public EmployeeRepository(ListenThenContext context) : base(context)
 {
 }
示例#3
0
 public UnitOfWork(ListenThenContext context)
 {
     this._context = context;
 }
示例#4
0
 public OneToOneMeetingRepository(ListenThenContext context) : base(context)
 {
 }
 public Repository(ListenThenContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }