Пример #1
0
 //***********************************************************************
 // Class Constructors
 //
 public WriteToDbAttempt(WriteToDbMethod method, bool success, bool tryingNext, double rows)
 {
     this._errList   = new ExceptionCollection();
     this._success   = success;
     this._type      = method;
     this._success   = success;
     this._continue  = tryingNext;
     this._rows      = rows;
     this._dstCreate = false;
     this._dstExist  = false;
     this._dstTrun   = false;
     this._setMap    = false;
 }
Пример #2
0
 public WriteToDbAttempt(WriteToDbMethod method, bool success, double rows)
     : this(method, success, false, rows)
 {
 }
Пример #3
0
 public WriteToDbAttempt(WriteToDbMethod method, bool success)
     : this(method, success, false, -1)
 {
 }
Пример #4
0
 public WriteToDbAttempt(WriteToDbMethod method)
     : this(method, false, false, -1)
 {
 }
Пример #5
0
 public WriteToDbAttempt(WriteToDbMethod method, bool success, double rows)
     : this(method, success, false, rows)
 { }
Пример #6
0
 public WriteToDbAttempt(WriteToDbMethod method, bool success)
     : this(method, success, false, -1)
 { }
Пример #7
0
 public WriteToDbAttempt(WriteToDbMethod method)
     : this(method, false, false, -1)
 { }
Пример #8
0
 //***********************************************************************
 // Class Constructors
 // 
 public WriteToDbAttempt(WriteToDbMethod method, bool success, bool tryingNext, double rows)
 {
     this._errList = new ExceptionCollection();
     this._success = success;
     this._type = method;
     this._success = success;
     this._continue = tryingNext;
     this._rows = rows;
     this._dstCreate = false;
     this._dstExist = false;
     this._dstTrun = false;
     this._setMap = false;
 }