public TicketExporter(int?defaultLocationId, string connectionString, CheckFoCancellation checkFoCancellation)
 {
     _defaultLocationId   = defaultLocationId;
     _connectionString    = connectionString;
     _checkFoCancellation = checkFoCancellation;
     _ticketGroups        = new List <IEnumerable <CommitCRM.Ticket> >();
 }
Example #2
0
 public CustomerExporter(string connectionString, CheckFoCancellation checkFoCancellation)
 {
     _connectionString    = connectionString;
     _checkFoCancellation = checkFoCancellation;
     _customerGroups      = new List <IEnumerable <CommitCRM.Account> >();
 }