示例#1
0
        public async Task <IHttpActionResult> GetMPRApprovalsById(int id)
        {
            MPRApproverModel model = new MPRApproverModel();

            model = await _rfqBusenessAcess.GetMPRApprovalsById(id);

            return(Ok(model));
        }
示例#2
0
        public async Task <IHttpActionResult> InsertMPRApprover(MPRApproverModel model)
        {
            statuscheckmodel status = new statuscheckmodel();

            status = await _rfqBusenessAcess.InsertMPRApprover(model);

            return(Ok(status));
        }
示例#3
0
 public async Task <statuscheckmodel> InsertMPRApprover(MPRApproverModel model)
 {
     return(await _rfqDataAcess.InsertMPRApprover(model));
 }