2023-05-01 19:49:49 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PersonnelDepartmentDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IDealModel : IId
|
|
|
|
|
{
|
|
|
|
|
DateTime DateFrom { get; }
|
2023-05-02 17:59:19 +04:00
|
|
|
|
DateTime? DateTo { get; }
|
2023-05-01 19:49:49 +04:00
|
|
|
|
int PositionId { get; }
|
|
|
|
|
int EmployeeId { get; }
|
|
|
|
|
int DepartmentId { get; }
|
|
|
|
|
int TypeId { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|