18 lines
342 B
C#
18 lines
342 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ConstructionFirmDataModels.Models
|
|||
|
{
|
|||
|
public interface IEmployeeModel : IId
|
|||
|
{
|
|||
|
string FullName { get; }
|
|||
|
string Phone { get; }
|
|||
|
DateTime HireDate { get; }
|
|||
|
int TeamId { get; }
|
|||
|
int SpecialtyId { get; }
|
|||
|
}
|
|||
|
}
|