VideoTape(IVideoTitleProfile title)
 {
     if (title == null)
     {
         throw new ArgumentNullException("title");
     }
     _title = title;
     Register <ScannedNewVideoTape>(When);
 }
 internal VideoTape(IVideoTitleProfile title, ScannedNewVideoTape @event)
     : this(title)
 {
     Apply(@event);
 }