Пример #1
0
 public GenProcedure(string procedureName, string methodName, string returnTypeName, EnumReturnType returnType) :
     this(null, procedureName, methodName, returnTypeName, returnType)
 {
 }
        public GenProcedure Add(string schemaName, string procedureName, string methodName, string returnTypeName, EnumReturnType returnType)
        {
            var proc = new GenProcedure(schemaName, procedureName, methodName, returnTypeName, returnType);

            return(proc);
        }
Пример #3
0
 public GenProcedure(string schemaName, string procedureName, string methodName, string returnTypeName, EnumReturnType returnType)
 {
     this.SchemaName     = schemaName;
     this.ProcedureName  = procedureName;
     this.MethodName     = methodName;
     this.ReturnTypeName = returnTypeName;
     this.ReturnType     = returnType;
 }