/// <summary> /// Initializes a new instance of the <see cref="Configuration"/> class, for given <see cref="ConfigurationType"/> /// </summary> public Configuration(ConfigurationType type, string name) { Type = type; Name = name.ToUpper(); ClientRect = new ClientRect(FullScreen); }
/// <summary> /// Initializes a new instance of the <see cref="Configuration"/> class, assuming <see cref="ConfigurationType.CloudPOS"/> /// </summary> /// <overloads> /// Initializes a new instance of the <see cref="Configuration"/> class. /// </overloads> public Configuration() { Type = ConfigurationType.CloudPOS; Name = "CloudPOS"; ClientRect = new ClientRect(FullScreen); }