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