ViewCarDataAndGuide.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models
  6. {
  7. public class ViewCarDataAndGuide
  8. {
  9. int id;
  10. public int Id
  11. {
  12. get { return id; }
  13. set { id = value; }
  14. }
  15. string unitArea;
  16. public string UnitArea
  17. {
  18. get { return unitArea; }
  19. set { unitArea = value; }
  20. }
  21. string unitName;
  22. public string UnitName
  23. {
  24. get { return unitName; }
  25. set { unitName = value; }
  26. }
  27. string contact;
  28. public string Contact
  29. {
  30. get { return contact; }
  31. set { contact = value; }
  32. }
  33. string tel;
  34. public string Tel
  35. {
  36. get { return tel; }
  37. set { tel = value; }
  38. }
  39. int score;
  40. public int Score
  41. {
  42. get { return score; }
  43. set { score = value; }
  44. }
  45. string operatorsDate;
  46. public string OperatorsDate
  47. {
  48. get { return operatorsDate; }
  49. set { operatorsDate = value; }
  50. }
  51. float price;
  52. public float Price
  53. {
  54. get { return price; }
  55. set { price = value; }
  56. }
  57. string currency;
  58. public string Currency
  59. {
  60. get { return currency; }
  61. set { currency = value; }
  62. }
  63. }
  64. }