using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { public class ViewCarDataAndGuide { int id; public int Id { get { return id; } set { id = value; } } string unitArea; public string UnitArea { get { return unitArea; } set { unitArea = value; } } string unitName; public string UnitName { get { return unitName; } set { unitName = value; } } string contact; public string Contact { get { return contact; } set { contact = value; } } string tel; public string Tel { get { return tel; } set { tel = value; } } int score; public int Score { get { return score; } set { score = value; } } string operatorsDate; public string OperatorsDate { get { return operatorsDate; } set { operatorsDate = value; } } float price; public float Price { get { return price; } set { price = value; } } string currency; public string Currency { get { return currency; } set { currency = value; } } } }