Ejemplo n.º 1
0
 internal PaperType(bool isReadonly, string name, string description, PriceManager.ModifiedHandler handler)
 {
     _isReadonly  = isReadonly;
     _name        = name;
     _description = description;
     _handler     = handler;
 }
Ejemplo n.º 2
0
 public PaperFormat(bool isReadonly, string name, float width, float height, int dpi, PriceManager.ModifiedHandler handler)
 {
     _isReadonly = isReadonly;
     _name       = name;
     _width      = width;
     _height     = height;
     _dpi        = dpi;
     _handler    = handler;
 }
Ejemplo n.º 3
0
 public Service(bool isReadonly, string name, string description, float price, bool isPriceFixed, bool isPermanent, PriceManager.ModifiedHandler handler)
 {
     _isReadonly   = isReadonly;
     _name         = name;
     _description  = description;
     _price        = price;
     _isPriceFixed = isPriceFixed;
     _isPermanent  = isPermanent;
     _handler      = handler;
 }
Ejemplo n.º 4
0
 internal Product(bool isReadonly, PaperFormat format, PaperType type, string printer, string channel, float price, PriceManager.ModifiedHandler handler)
 {
     _isReadonly = isReadonly;
     _format     = format;
     _type       = type;
     _printer    = printer;
     _channel    = channel;
     _price      = price;
     _handler    = handler;
 }