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

            model = await _rfqBusenessAcess.GetMPRDispatchLocationById(id);

            return(Ok(model));
        }