Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeClientTemp/IEmployeeClientTempApplication.cs
2025-04-15 15:06:17 +03:30

26 lines
716 B
C#

using System;
using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.EmployeeClientTemp;
public interface IEmployeeClientTempApplication
{
OperationResult Create(CreateEmployeeClientTemp command);
EmployeeClientTempGetDetailsViewModel GetDetails(long employeeId, long workshopId);
}
public class EmployeeClientTempGetDetailsViewModel
{
public long WorkshopId { get; set; }
public long EmployeeId { get; set; }
public string StartWorkDate { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string FullName => $"{FName} {LName}";
public string NationalCode { get; set; }
public string Nationality { get; set; }
}