Example #1
0
 public FlowDetailMgr(IFlowDetailDao entityDao, IFlowDao flowDao, ICriteriaMgr criteriaMgr, IFlowDetailTrackMgr flowDetailTrackMgr)
     : base(entityDao)
 {
     this.flowDao = flowDao;
     this.criteriaMgr = criteriaMgr;
     this.flowDetailTrackMgr = flowDetailTrackMgr;
 }
Example #2
0
 public FlowDetailMgr(IFlowDetailDao entityDao, IFlowDao flowDao, ICriteriaMgr criteriaMgr, IFlowDetailTrackMgr flowDetailTrackMgr)
     : base(entityDao)
 {
     this.flowDao            = flowDao;
     this.criteriaMgr        = criteriaMgr;
     this.flowDetailTrackMgr = flowDetailTrackMgr;
 }
Example #3
0
 public FlowMgr(IFlowDao entityDao,
                ICriteriaMgr criteriaMgr,
                IFlowDetailMgr flowDetailMgr,
                IBomMgr bomMgr,
                IBomDetailMgr bomDetailMgr,
                IFlowTrackMgr flowTrackMgr)
     : base(entityDao)
 {
     this.criteriaMgr   = criteriaMgr;
     this.flowDetailMgr = flowDetailMgr;
     this.bomMgr        = bomMgr;
     this.bomDetailMgr  = bomDetailMgr;
     this.flowTrackMgr  = flowTrackMgr;
 }
Example #4
0
 public FlowMgr(IFlowDao entityDao,
     ICriteriaMgr criteriaMgr,
     IFlowDetailMgr flowDetailMgr,
     IBomMgr bomMgr,
     IBomDetailMgr bomDetailMgr,
     IFlowTrackMgr flowTrackMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.flowDetailMgr = flowDetailMgr;
     this.bomMgr = bomMgr;
     this.bomDetailMgr = bomDetailMgr;
     this.flowTrackMgr = flowTrackMgr;
 }
Example #5
0
 public FlowBaseMgr(IFlowDao entityDao)
 {
     this.entityDao = entityDao;
 }
Example #6
0
 public FlowBaseMgr(IFlowDao entityDao)
 {
     this.entityDao = entityDao;
 }