PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentDataModels/Models/IEmployee.cs

21 lines
518 B
C#
Raw Normal View History

using EmployeeManagmentDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EmployeeManagmentDataModels.Models
{
public interface IEmployee
{
int Id { get; set; }
string NameJob { get; set; }
DateTime? StartJob { get; set; }
DateTime? EndJob { get; set; }
string? PartTimeJob { get; set; }
float Bid { get; set; }
int? PhisicalPersonsId { get; set; }
}
}