public Product(string name, int priceToDo, int hoursToDo, Matirial theMatirial)
 {
     this.Name = name;
     this.PriceToDo = priceToDo;
     this.HoursToDoo = hoursToDo;
     this.TheMatirial = theMatirial;
 }
 public Product(string name, double priceToDo, int hoursToDo,double priceToSell,Matirial theMatirial)
 {
     this.Name = name;
     this.PriceToDo = priceToDo;
     this.HoursToDo = hoursToDo;
     this.PriceToSell = priceToSell;
     this.TheMatirial =theMatirial;
 }