Hi all
On Domain layer, my entity is subclass of FullAuditedEntity
May i know how can i retrieve the CreatorUser object on Service layer?
Please advise. Thanks alot
[Table("BankAccount")]
public class BankAccount : FullAuditedEntity
{
public string AccountNo { get; set; }
public string AccountName { get; set; }
public string BankName { get; set; }
}