Exemplo n.º 1
0
        public static ParameterTS Parameter(string name = null, ParameterLocation location = ParameterLocation.None)
        {
            ParameterTS parameter = DependencyInjection.New <ParameterTS>();

            parameter.Name     = name;
            parameter.Location = location;

            return(parameter);
        }
 public static void ConstructParameterMapper(TSObject obj, ParameterTS parameter)
 {
     MethodTS.GenerateRequestParameter(obj, parameter, parameter.MethodTS.GetParameterTransformations());
 }