Exemplo n.º 1
0
        public async Task <IHttpActionResult> GetAllMPRDispatchLocations()
        {
            List <MPRDispatchLocationModel> model = new List <MPRDispatchLocationModel>();

            model = await _rfqBusenessAcess.GetAllMPRDispatchLocations();

            return(Ok(model));
        }