12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace FillingColumn
- {
- public class FuelInCurrentGasStation
- {
- public int IDFuelType { get; set; }
- public string NameFuelType { get; set; }
- public double Price { get; set; }
- public int AmountOfFuel { get; set; }
- public string NameAndPriceFuel {
- get
- {
- return NameFuelType + " - " + Price.ToString("F2")+" руб.";
- }
- }
- }
- }
|