28 lines
708 B
C#
28 lines
708 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.InsuranceEmployeeInfo;
|
|
|
|
public class InsuranceEmployeeInfoSearchModel
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public string FName { get; set; }
|
|
public string LName { get; set; }
|
|
|
|
public string FatherName { get; set; }
|
|
|
|
public DateTime DateOfBirth { get; set; }
|
|
|
|
public DateTime DateOfIssue { get; set; }
|
|
|
|
public string PlaceOfIssue { get; set; }
|
|
public string NationalCode { get; set; }
|
|
|
|
public string IdNumber { get; set; }
|
|
public string Gender { get; set; }
|
|
public string InsuranceCode { get; set; }
|
|
|
|
} |