コード例 #1
0
ファイル: RFQController.cs プロジェクト: Fayaz-N/SCMAPI
        public async Task <IHttpActionResult> GetAllMPRBuyerGroups()
        {
            List <MPRBuyerGroupModel> model = new List <MPRBuyerGroupModel>();

            model = await _rfqBusenessAcess.GetAllMPRBuyerGroups();

            return(Ok(model));
        }