Ejemplo n.º 1
0
        public static LinkRepresentation CreateTableRowValueLink(IObjectFacade no,
                                                                 PropertyContextFacade propertyContext,
                                                                 IOidStrategy oidStrategy,
                                                                 HttpRequestMessage req,
                                                                 RestControlFlags flags)
        {
            var columns = propertyContext.Property.TableViewData?.Item2;
            var rt      = new ValueRelType(propertyContext.Property, new UriMtHelper(oidStrategy, req, no));

            return(CreateTableRowValueLink(no, columns, rt, oidStrategy, req, flags));
        }
 public static LinkRepresentation CreateTableRowValueLink(IObjectFacade no,
                                                          PropertyContextFacade propertyContext,
                                                          IOidStrategy oidStrategy,
                                                          HttpRequestMessage req,
                                                          RestControlFlags flags) {
     var columns = propertyContext.Property.TableViewData?.Item2;
     var rt = new ValueRelType(propertyContext.Property, new UriMtHelper(oidStrategy, req, no));
     return CreateTableRowValueLink(no, columns, rt, oidStrategy, req, flags);
 }