25 lines
981 B
C#
25 lines
981 B
C#
|
using ConstructionFirmDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Subd_4.BindingModels
|
|||
|
{
|
|||
|
public class ProjectBindingModel : IProjectModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string ClientName { get; set; } = string.Empty;
|
|||
|
public string ObjectType { get; set; } = string.Empty;
|
|||
|
public string LocationP { get; set; } = string.Empty;
|
|||
|
public int Budget { get; set; }
|
|||
|
public DateTime DeadLine { get; set; } = DateTime.Now;
|
|||
|
public ConstructionFirmDataModels.Enum.TaskStatus Status { get; set; } = ConstructionFirmDataModels.Enum.TaskStatus.Неизвестен;
|
|||
|
public int CliendId { get; set; }
|
|||
|
public int EmployeeId { get; set; }
|
|||
|
public Dictionary<int, (IConstructionMaterialModel, int)> ConstructionMaterialProjects { get; set; } = new();
|
|||
|
public Dictionary<int, (ITeamModel, int)> TeamProject { get; set; } = new();
|
|||
|
}
|
|||
|
}
|