24 lines
537 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
using System.ComponentModel;
namespace ServiceStationContracts.ViewModels
{
public class WorkViewModel : IWorkModel
{
2024-08-10 18:43:15 +04:00
public int Id { get; set; }
[DisplayName("Дата")]
2024-04-30 01:41:35 +03:00
public DateTime Date { get; set; } = DateTime.Now;
2024-08-10 18:43:15 +04:00
2024-04-30 01:41:35 +03:00
[DisplayName("Цена")]
public double Price { get; set; }
2024-04-30 01:41:35 +03:00
public int ExecutorId { get; set; }
2024-08-10 18:43:15 +04:00
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
}