示例#1
0
 public static CopyProperty ToEntity(this PropertyCreateModel model, CopyProperty destination)
 {
     return(model.MapTo(destination));
 }
示例#2
0
 public static Property ToEntity(this PropertyCreateModel createmodel, Property destination)
 {
     return(createmodel.MapTo(destination));
 }
示例#3
0
 public static CopyProperty ToCopyEntity(this PropertyCreateModel model)
 {
     return(model.MapTo <PropertyCreateModel, CopyProperty>());
 }
示例#4
0
 public static Property ToEntity(this PropertyCreateModel createmodel)
 {
     return(createmodel.MapTo <PropertyCreateModel, Property>());
 }