Esempio n. 1
0
        public async Task <IHttpActionResult> GetMPRDispatchLocationById(int id)
        {
            MPRDispatchLocationModel model = new MPRDispatchLocationModel();

            model = await _rfqBusenessAcess.GetMPRDispatchLocationById(id);

            return(Ok(model));
        }