Exemplo n.º 1
0
 public static UserDisplayInfo GetEventByInfo(this TicketEvent ticketEvent)
 {
     return(UserDisplayInfo.GetUserInfo(ticketEvent.EventBy));
 }
Exemplo n.º 2
0
 public static UserDisplayInfo GetCurrentStatusSetByInfo(this Ticket ticket)
 {
     return(UserDisplayInfo.GetUserInfo(ticket.CurrentStatusSetBy));
 }
Exemplo n.º 3
0
 public static UserDisplayInfo GetLastUpdatedByInfo(this Ticket ticket)
 {
     return(UserDisplayInfo.GetUserInfo(ticket.LastUpdateBy));
 }
Exemplo n.º 4
0
 public static UserDisplayInfo GetOwnerInfo(this Ticket ticket)
 {
     return(UserDisplayInfo.GetUserInfo(ticket.Owner));
 }
Exemplo n.º 5
0
 public static UserDisplayInfo GetCreatedByInfo(this Ticket ticket)
 {
     return(UserDisplayInfo.GetUserInfo(ticket.CreatedBy));
 }
Exemplo n.º 6
0
 public static UserDisplayInfo GetAssignedToInfo(this Ticket ticket)
 {
     return(UserDisplayInfo.GetUserInfo(ticket.AssignedTo));
 }