public static Banner ToEntity(this BannerModel model, Banner destination)
 {
     return(model.MapTo(destination));
 }
 public static Banner ToEntity(this BannerModel model)
 {
     return(model.MapTo <BannerModel, Banner>());
 }