예제 #1
0
파일: Repository.cs 프로젝트: JanFlos/Dev
        public Method completeMethod(Method method)
        {
            Method result = method;

            if (method != null)
            {
                result = _DBContext.Methods.Where(a => a.ObjectId == method.ObjectId &&
                                                     a.SubprogramId == method.SubprogramId &&
                                                     a.Overload == method.Overload)
                   .Include(u => u.Package)
                   .Include(a => a.Arguments)
                   .FirstOrDefault();

            }
            return result;
        }
예제 #2
0
파일: Repository.cs 프로젝트: JanFlos/Dev
        public PlSqlWrapper getPLSQLWrapper(Method method)
        {
            return new PlSqlWrapper(completeMethod(method));

        }
예제 #3
0
파일: PlSqlWrapper.cs 프로젝트: JanFlos/Dev
 public PlSqlWrapper(Method method)
 {
     _method = method;
 }