public void Run(IBatchStartPoint batchStartPoint)
 {
     framework.DomainObjectInjector.InjectInto(batchStartPoint);
     StartTransaction();
     batchStartPoint.Execute();
     EndTransaction();
 }
Exemplo n.º 2
0
 public virtual void Run(IBatchStartPoint batchStartPoint)
 {
     framework.ContainerInjector.InitDomainObject(batchStartPoint);
     StartTransaction();
     batchStartPoint.Execute();
     EndTransaction();
 }
Exemplo n.º 3
0
        protected void Start(IBatchStartPoint batchStartPoint) {
            if (batchStartPoint == null) {
                throw new InitialisationException("batchStartPoint may not be null");
            }

            BatchStartPoint = batchStartPoint;
            Start();
        }
Exemplo n.º 4
0
 public void Run(IBatchStartPoint batchStartPoint) {
     framework.DomainObjectInjector.InjectInto(batchStartPoint);
     StartTransaction();
     batchStartPoint.Execute();
     EndTransaction();
 }
Exemplo n.º 5
0
 public BatchClient(IBatchStartPoint batchStartPoint) {
     this.batchStartPoint = batchStartPoint;
 }