示例#1
0
文件: Batch.cs 项目: sq/Libraries
 internal void InvokeBasePrepare(Batch b)
 {
     b.Prepare(Manager);
 }
示例#2
0
 public BatchIssueFailedException(Batch batch, Exception innerException)
     : base(FormatMessage(batch, innerException), innerException)
 {
     Batch = batch;
 }
示例#3
0
文件: Batch.cs 项目: sq/Libraries
 public void Prepare(Batch batch)
 {
     Manager.Prepare(batch, ref this);
 }