public bool updateRequestReject(iRejectcomments rj)
    {
        ApproveRequestController ar = new ApproveRequestController();

        ar.updateRequestReject(Int32.Parse(rj.RequestID), rj.Comments);
        return(true);
    }
Ejemplo n.º 2
0
    public static iRejectcomments Make(string requestID, string comments)
    {
        iRejectcomments rj = new iRejectcomments();

        rj.requestID = requestID;
        rj.comments  = comments;
        return(rj);
    }