//============================= Methods =====================================
 public void DisplayTShirt()
 {
     Console.ForegroundColor = ConsoleColor.Yellow;
     Console.WriteLine();
     Console.WriteLine("\tThe T-shirt that you have selected has :");
     Console.WriteLine();
     Console.WriteLine($"\tColor : {TShirtColor.ToString()}");
     Console.WriteLine($"\tSize : {TShirtSize.ToString()}");
     Console.WriteLine($"\tFabric : {TShirtFabric.ToString()}");
     Console.WriteLine();
     Console.WriteLine($"\tPrice : {TShirtPrice}");
     Console.ForegroundColor = ConsoleColor.White;
 }
Пример #2
0
 public TShirt(TShirtSize size,TShirtColor color)
 {
     this.size = size;
     this.color = color;
 }
Пример #3
0
 public TShirt()
 {
     this.size = TShirtSize.M;
     this.color = TShirtColor.Red;
 }