19 lines
370 B
C#
19 lines
370 B
C#
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; }
|
|
DateTime DateTo { get; }
|
|
int PositionId { get; }
|
|
int EmployeeId { get; }
|
|
int DepartmentId { get; }
|
|
int TypeId { get; }
|
|
}
|
|
}
|