Added the tenant ID in emplyee profile

This commit is contained in:
ashutosh.nehete 2025-08-22 10:17:54 +05:30
parent 0de2e3f75d
commit 7eabd4fa73
2 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,8 @@ namespace Marco.Pms.Model.Mapper
Photo = base64String,
IsActive = model.IsActive,
IsSystem = model.IsSystem,
JoiningDate = model.JoiningDate
JoiningDate = model.JoiningDate,
TenantId = model.TenantId
};
}
public static BasicEmployeeVM ToBasicEmployeeVMFromEmployee(this Employee employee)

View File

@ -28,6 +28,7 @@
public string? ApplicationUserId { get; set; }
public Guid? JobRoleId { get; set; }
public Guid TenantId { get; set; }
public bool IsSystem { get; set; }
public string? JobRole { get; set; }