Esempio n. 1
0
 public void MapFrom(ArtistEventInformation artistEventInformation)
 {
     if (artistEventInformation == null)
     {
         return;
     }
     if (artistEventInformation.Events == null)
     {
         return;
     }
     if (artistEventInformation.Events.Event == null)
     {
         return;
     }
     this.Shows = artistEventInformation.Events.Event.ToList();
 }
Esempio n. 2
0
 public void MapFrom(ArtistEventInformation artistEventInformation)
 {
     if (artistEventInformation == null) return;
     if (artistEventInformation.Events == null) return;
     if (artistEventInformation.Events.Event == null) return;
     this.Shows = artistEventInformation.Events.Event.ToList();
 }