Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the class.
 /// </summary>
 public CnlDataFormatter(ConfigDataset configDataset, EnumDict enums, TimeZoneInfo timeZone)
 {
     culture            = Locale.Culture;
     this.configDataset = configDataset ?? throw new ArgumentNullException(nameof(configDataset));
     this.enums         = enums ?? throw new ArgumentNullException(nameof(enums));
     this.timeZone      = timeZone ?? throw new ArgumentNullException(nameof(timeZone));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the class.
 /// </summary>
 public ConfigDatabase()
     : base()
 {
     RightMatrix = new RightMatrix();
     Enums       = new EnumDict();
     SortedViews = new List <View>();
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the class.
 /// </summary>
 public CnlDataFormatter(ConfigDataset configDataset, EnumDict enums)
     : this(configDataset, enums, TimeZoneInfo.Local)
 {
 }