Esempio n. 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));
 }
Esempio n. 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));
 }
Esempio n. 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));
 }