Added the tenant ID in emplyee profile
This commit is contained in:
parent
0de2e3f75d
commit
7eabd4fa73
@ -36,7 +36,8 @@ namespace Marco.Pms.Model.Mapper
|
|||||||
Photo = base64String,
|
Photo = base64String,
|
||||||
IsActive = model.IsActive,
|
IsActive = model.IsActive,
|
||||||
IsSystem = model.IsSystem,
|
IsSystem = model.IsSystem,
|
||||||
JoiningDate = model.JoiningDate
|
JoiningDate = model.JoiningDate,
|
||||||
|
TenantId = model.TenantId
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
public static BasicEmployeeVM ToBasicEmployeeVMFromEmployee(this Employee employee)
|
public static BasicEmployeeVM ToBasicEmployeeVMFromEmployee(this Employee employee)
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
public string? ApplicationUserId { get; set; }
|
public string? ApplicationUserId { get; set; }
|
||||||
|
|
||||||
public Guid? JobRoleId { get; set; }
|
public Guid? JobRoleId { get; set; }
|
||||||
|
public Guid TenantId { get; set; }
|
||||||
public bool IsSystem { get; set; }
|
public bool IsSystem { get; set; }
|
||||||
public string? JobRole { get; set; }
|
public string? JobRole { get; set; }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user