Ejemplo n.º 1
0
        public async Task <IHttpActionResult> GetMPRApprovalsById(int id)
        {
            MPRApproverModel model = new MPRApproverModel();

            model = await _rfqBusenessAcess.GetMPRApprovalsById(id);

            return(Ok(model));
        }