using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConstructionFirmDataModels.Models { public interface IProjectModel : IId { string ClientName { get; } string ObjectType { get; } string LocationP { get; } int Budget { get; } DateTime DeadLine { get; } Enum.TaskStatus Status { get; } int CliendId { get; } int EmployeeId {get;} Dictionary ConstructionMaterialProjects { get; } Dictionary TeamProject { get; } } }