22 lines
507 B
C#
22 lines
507 B
C#
|
using ServiceStationDataModels;
|
|||
|
|
|||
|
namespace ServiceStationContracts.BindingModels
|
|||
|
{
|
|||
|
public class WorkBindingModel : IWorkModel
|
|||
|
{
|
|||
|
public DateTime Date { get; set; } = DateTime.Now;
|
|||
|
|
|||
|
public int Price { get; set; }
|
|||
|
|
|||
|
public WorkStatus Status { get; set; } = WorkStatus.Неизвестно;
|
|||
|
|
|||
|
public int ExecutorId { get; set; }
|
|||
|
|
|||
|
public int ReportId { get; set; }
|
|||
|
|
|||
|
public int CategoryWorkId { get; set; }
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|