26 lines
619 B
C#
26 lines
619 B
C#
|
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<int, (IConstructionMaterialModel, int)> ConstructionMaterialProjects { get; }
|
|||
|
Dictionary<int, (ITeamModel, int)> TeamProject { get; }
|
|||
|
}
|
|||
|
}
|