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