Esempio n. 1
0
 public PrintBase(BitmapSource photo, string description, double cost)
 {
     Photo = photo;
     PrintType = new PrintType(description, cost);
     Quantity = 0;
 }
Esempio n. 2
0
 public PrintBase(BitmapSource photo, PrintType printtype, int quantity)
 {
     Photo = photo;
     PrintType = printtype;
     Quantity = quantity;
 }
 public PrintBase(BitmapSource photo, string description, double cost)
 {
     Photo     = photo;
     PrintType = new PrintType(description, cost);
     Quantity  = 0;
 }
 public override string ToString() => PrintType.ToString();
 public PrintBase(BitmapSource photo, PrintType printtype, int quantity)
 {
     Photo     = photo;
     PrintType = printtype;
     Quantity  = quantity;
 }