Guest User

toppings

a guest
Jan 12th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace pizzaresturant
  8. {
  9. class toppings
  10. {
  11. string toppingName;
  12. double toppingPrice;
  13.  
  14. public toppings(string ptoppingName, double ptoppingPrice)
  15. {
  16. toppingName = ptoppingName;
  17. toppingPrice = ptoppingPrice;
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment