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