Пример #1
0
 public CveOutlook(string tokenSii, IProgress <HPgModel> progress)
 {
     TokenSii = tokenSii;
     Progress = progress;
     PgModel  = new HPgModel();
     Progress = progress;
     IsRuning = true;
 }
Пример #2
0
 // CTOR FOR NV INSERT.
 public CveCreditor(string dataBaseName, IProgress <HPgModel> progress, ResultParticipant userParticipant)
 {
     Mode            = TipoTask.Creditor;
     IsRuning        = true;
     StringLogging   = new StringBuilder();
     Conn            = new Conexion(dataBaseName);
     PgModel         = new HPgModel();
     Progress        = progress;
     UserParticipant = userParticipant;
 }
Пример #3
0
 public CveCreditor(ResultParticipant userParticipant, IProgress <HPgModel> progress, string dataBaseName, string tokenSii, string tokenCen)
 {
     DBName          = dataBaseName;
     TokenCen        = tokenCen;
     UserParticipant = userParticipant;
     TokenSii        = tokenSii;
     Mode            = TipoTask.Creditor;
     PgModel         = new HPgModel();
     Conn            = new Conexion(dataBaseName);
     Progress        = progress;
     IsRuning        = true;
     DetalleList     = new List <Detalle>();
 }
Пример #4
0
 public CveDebtor(string dBName, IProgress <HPgModel> progress, string tokenCen, string tokenSii, ResultParticipant userParticipant)
 {
     DBName          = dBName;
     Progress        = progress;
     TokenCen        = tokenCen;
     TokenSii        = tokenSii;
     UserParticipant = userParticipant;
     Mode            = TipoTask.Debtor;
     PgModel         = new HPgModel();
     Progress        = progress;
     Conn            = new Conexion(dBName);
     IsRuning        = true;
 }
Пример #5
0
 public SendEmailTo(ResultParticipant userParticipant, IProgress <HPgModel> progress)
 {
     UserParticipant = userParticipant;
     Progress        = progress;
     ProgressReport  = new HPgModel();
 }