The library can be expanded by implementing additional class derived from VECountConsolidator.Consolidator
class.
This repository contains two components:
- VECountConsolidator -- Library that handles fetching and processing of the data.
- VECountConsolidatorCli -- CLI frontend that uses the library above.
This library is available from NuGet.
Library handling the process. Caller should call Process() function with appropriate enum
currently only supports VEC.ARRL
.
Return the list of the following format.
public class Person
{
public string Call;
public int Count;
public string Name;
public State State;
public string Vec;
}
public class State
{
public string StateCode;
public string StateName;
}
Command line arguments for VECountConsolidatorCli is below:
VECountConsolidatorCli 1.5.0.0
Copyright (c) 2018 Hideki Saito
ERROR(S):
Required option 'm, mode' is missing.
-m, --mode Required. Mode of operations. (Currently supported: create)
--help Display this help screen.
--version Display version information.