示例#1
0
 private static string Entity2VideoAuthorFullName(this vw_USER_EventsLog entity)
 {
     return(entity.VideoAuthorId == null ? string.Empty : DtoExtensions.CombineFullName(entity.VideoAuthorFirstName, entity.VideoAuthorLastName, entity.VideoAuthorNickname));
 }
示例#2
0
 private static string Entity2StoreOwnerFullName(this vw_USER_EventsLog entity)
 {
     return(entity.StoreOwnerUserID == null ? string.Empty : DtoExtensions.CombineFullName(entity.StoreOwnerFirstName, entity.StoreOwnerLastName, entity.StoreOwnerNickname));
 }
示例#3
0
 private static string GetUserName(this vw_USER_EventsLog entity)
 {
     return(entity.UserID == null ? string.Empty : DtoExtensions.CombineFullName(entity.FirstName, entity.LastName, entity.Nickname));
 }