ProdAgent.cs 869 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShabaninDemoEkz
  7. {
  8. public partial class Agent
  9. {
  10. public string TypeA;
  11. public string typea
  12. {
  13. get
  14. {
  15. return TypeA;
  16. }
  17. set
  18. {
  19. TypeA = value;
  20. }
  21. }
  22. public int CountSum;
  23. public int counts
  24. {
  25. get { return CountSum; }
  26. set { CountSum = value; }
  27. }
  28. public int Skidka;
  29. public int skidka
  30. {
  31. get { return Skidka; }
  32. set { Skidka = value; }
  33. }
  34. public string Color;
  35. public string grencolor
  36. {
  37. get { return Color; }
  38. set { Color = value; }
  39. }
  40. }
  41. }