Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 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 Zad1
  8. {
  9. public class Tekuciracun: Racun
  10. {
  11. private decimal _provizija;
  12.  
  13. public decimal Provizija
  14. {
  15. get
  16. {
  17. return _provizija;
  18. }
  19. set
  20. {
  21. _provizija = value;
  22. }
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement