예제 #1
0
 protected CustomApiArgument(bool isInArgument, string name, CustomApiArgumentType type, bool isSerialized, string description, string displayName, string logicalEntityName, bool isOptional)
 {
     IsInArgument         = isInArgument;
     ArgumentName         = name;
     ArgumentType         = type;
     IsSerializedArgument = isSerialized;
     Description          = description;
     DisplayName          = displayName;
     LogicalEntityName    = logicalEntityName;
     IsOptional           = isOptional;
 }
예제 #2
0
 public CustomApiInArgument(string name, CustomApiArgumentType type, bool isSerialized, string description, string displayName, string logicalEntityName, bool isOptional)
     : base(true, name, type, isSerialized, description, displayName, logicalEntityName, isOptional)
 {
 }