Пример #1
0
 public AutoTaskDAL(IDbContextComponent context)
 {
     this.Connection  = context.Connection;
     this.Transaction = context.Transaction;
     this.Config      = new AutoTaskConfig();
 }
Пример #2
0
 public AutoTaskBLL(IDbContextComponent context)
 {
     this.Manager = new AutoTaskDAL(context);
 }