21 lines
713 B
C#
21 lines
713 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ServiceStationContracts.ViewModels
|
|
{
|
|
public class ReportSparePartsViewModel
|
|
{
|
|
public string SparePartName { get; set; } = string.Empty;
|
|
public double SparePartPrice { get; set; }
|
|
public string RepairName { get; set; } = string.Empty;
|
|
public DateTime? RepairStartDate { get; set; } = DateTime.Now;
|
|
public double RepairPrice { get; set; }
|
|
public string WorkType { get; set; } = string.Empty;
|
|
public DateTime? TechnicalWorkDate { get; set; } = DateTime.Now;
|
|
public double TechnicalWorkPrice { get; set; }
|
|
}
|
|
}
|