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