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