16 lines
410 B
C#
Raw Normal View History

2024-08-10 18:43:15 +04:00
using ServiceStationDataModels.Models;
2024-04-30 01:41:35 +03:00
namespace ServiceStationContracts.BindingModels
{
2024-08-10 18:43:15 +04:00
public class WorkBindingModel : IWorkModel {
2024-04-30 01:41:35 +03:00
2024-08-10 18:43:15 +04:00
public int Id { get; set; }
public DateTime Date { get; set; } = DateTime.Now;
public double Price { get; set; }
public int ExecutorId { get; set; }
public int TaskId { get; set; }
2024-04-30 01:41:35 +03:00
2024-08-10 18:43:15 +04:00
public Dictionary<int, IClientModel> ClientList { get; set; } = new();
}
2024-04-30 01:41:35 +03:00
}