Exemplo n.º 1
0
 internal EmbedVideo(Model model)
     : this(model.Url, (int?)model.Height, (int?)model.Width)
 {
 }
Exemplo n.º 2
0
 internal static EmbedVideo Create(Model model)
 {
     return(new EmbedVideo(model.Url,
                           model.Height.IsSpecified ? model.Height.Value : (int?)null,
                           model.Width.IsSpecified ? model.Width.Value : (int?)null));
 }