예제 #1
0
 /// <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);
 }
예제 #2
0
 /// <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);
 }