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

            model = await _rfqBusenessAcess.GetAllMPRDispatchLocations();

            return(Ok(model));
        }