Example #1
0
 public TaskRepo(ITaskDbContext context)
 {
     this.dbContext = context;
 }
Example #2
0
 public GroupRepo(ITaskDbContext context)
 {
     this.dbContext = context;
 }
Example #3
0
 /// <summary>
 /// 构造器
 /// </summary>
 /// <param name="context"></param>
 public UserRepo(ITaskDbContext context)
 {
     this.dbContext = context;
 }