22 lines
681 B
C#
22 lines
681 B
C#
using CompanyManagment.App.Contracts.Employee;
|
|
using CompanyManagment.App.Contracts.Workshop;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeInsuranceRecord;
|
|
|
|
public class EmployeeInsuranceRecordViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public long WorkShopId { get; set; }
|
|
public string DateOfStart { get; set; }
|
|
public string DateOfEnd { get; set; }
|
|
public int TotalDays { get; set; }
|
|
public WorkshopViewModel Workshop { get; set; }
|
|
public EmployeeViewModel Employee { get; set; }
|
|
|
|
} |