예제 #1
0
 public PrintBase(BitmapSource photo, string description, double cost)
 {
     Photo = photo;
     PrintType = new PrintType(description, cost);
     Quantity = 0;
 }
예제 #2
0
 public PrintBase(BitmapSource photo, PrintType printtype, int quantity)
 {
     Photo = photo;
     PrintType = printtype;
     Quantity = quantity;
 }
예제 #3
0
 public PrintBase(BitmapSource photo, string description, double cost)
 {
     Photo     = photo;
     PrintType = new PrintType(description, cost);
     Quantity  = 0;
 }
예제 #4
0
 public override string ToString() => PrintType.ToString();
예제 #5
0
 public PrintBase(BitmapSource photo, PrintType printtype, int quantity)
 {
     Photo     = photo;
     PrintType = printtype;
     Quantity  = quantity;
 }