public static EntityType ToEntityType(this AppType appType) { var entityType = new EntityType() { FileIdentity = appType.FileIdentity.Value, FilePath = appType.FilePath.Value, FileFormat = appType.FileFormat, }; return(entityType); }
public static AppType ToAppType(this EntityType entityType) { var appType = new AppType() { FileIdentity = new FileIdentity(entityType.FileIdentity), FilePath = new FilePath(entityType.FilePath), FileFormat = entityType.FileFormat, }; return(appType); }