46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BMA.EHR.Application.Responses.Profiles
|
|
{
|
|
public class GetProfileByRootIdDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string? Prefix { get; set; }
|
|
public string? FirstName { get; set; }
|
|
public string? LastName { get; set; }
|
|
public string? CitizenId { get; set; }
|
|
|
|
public DateTime BirthDate { get; set; } = DateTime.MinValue;
|
|
|
|
public DateTime? DateStart { get; set; } = DateTime.MinValue;
|
|
|
|
public DateTime? DateAppoint { get; set; } = DateTime.MinValue;
|
|
|
|
public string? Position { get; set; }
|
|
|
|
public Guid? OcId { get; set; }
|
|
|
|
public PosType? PosType { get; set; }
|
|
|
|
public PosLevel? PosLevel { get; set; }
|
|
|
|
public string? Oc { get; set; }
|
|
|
|
public List<ProfileSalaryResult>? ProfileSalary { get; set; }
|
|
|
|
public List<ProfileInsignia>? ProfileInsignia { get; set; }
|
|
|
|
public Guid? Keycloak { get; set; }
|
|
|
|
public string? PosNo { get; set; }
|
|
|
|
public string? PosNoEmployee { get; set; }
|
|
|
|
public string? Gender { get; set; }
|
|
}
|
|
}
|