Beispiel #1
0
        public List <RmApproval> GetApprovalByQuery(string query, string[] attributes)
        {
            List <RmResource> resourceList = Base_GetResourceByQuery(RmApproval.StaticResourceType(), query, attributes);

            return(resourceList.ConvertAll <RmApproval>(delegate(RmResource r) { return r as RmApproval; }));
        }
Beispiel #2
0
 public RmApproval GetApprovalById(string objectId, string[] attributes)
 {
     return(Base_GetResourceById(RmApproval.StaticResourceType(), objectId, attributes) as RmApproval);
 }
Beispiel #3
0
        public List <RmApproval> GetApprovalByAttribute(string attributeName, string value, OperationType operation, string[] attributes)
        {
            List <RmResource> resourceList = Base_GetResourceByAttribute(RmApproval.StaticResourceType(), attributeName, value, operation, attributes);

            return(resourceList.ConvertAll <RmApproval>(delegate(RmResource r) { return r as RmApproval; }));
        }
Beispiel #4
0
 public RmApproval GetApprovalByDisplayName(string displayName, string[] attributes)
 {
     return(Base_GetResourceByDisplayName(RmApproval.StaticResourceType(), displayName, attributes) as RmApproval);
 }