initial commit

This commit is contained in:
2026-07-21 14:22:06 +07:00
commit 2d7959f202
572 changed files with 45295 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
namespace Indotalent.Data.Entities;
public class Transfer : BaseEntity, IHasAutoNumber, IMultiTenant
{
public string? AutoNumber { get; set; }
public string EmployeeId { get; set; } = string.Empty;
public Employee? Employee { get; set; }
public string FromBranchId { get; set; } = string.Empty;
public Branch? FromBranch { get; set; }
public string FromDepartmentId { get; set; } = string.Empty;
public Department? FromDepartment { get; set; }
public string FromDesignationId { get; set; } = string.Empty;
public Designation? FromDesignation { get; set; }
public string ToBranchId { get; set; } = string.Empty;
public Branch? ToBranch { get; set; }
public string ToDepartmentId { get; set; } = string.Empty;
public Department? ToDepartment { get; set; }
public string ToDesignationId { get; set; } = string.Empty;
public Designation? ToDesignation { get; set; }
public DateTime? TransferDate { get; set; }
public string TransferNote { get; set; } = string.Empty;
public string Status { get; set; } = string.Empty;
public string? TenantId { get; set; }
}