示例#1
0
 public BaseCoreServices(iDataContext oDC)
 {
     this.Manager = new BaseModuleManager(oDC);
     this.UC      = null;
 }
示例#2
0
 public BaseCoreServices(iApplicationContext oContext)
 {
     this.Manager = new BaseModuleManager(oContext.DataContext);
     this.UC      = oContext.UserContext;
 }
示例#3
0
 public ServiceGlossary(iApplicationContext oContext)
 {
     this.Manager = new BaseManager(oContext.DataContext);
     DC           = oContext.DataContext;
     this.UC      = oContext.UserContext;
 }
示例#4
0
 public ServiceGlossary(iDataContext oDC)
 {
     DC           = oDC;
     this.Manager = new BaseManager(oDC);
     this.UC      = null;
 }
示例#5
0
 public ServiceTopbar(iDataContext datacontext)
 {
     this.Manager = new BaseModuleManager(datacontext);
     this.UC      = null;
 }