Exemplo n.º 1
0
        public async Task <IHttpActionResult> GetMPRDepartmentById(int id)
        {
            MPRDepartmentModel model = new MPRDepartmentModel();

            model = await _rfqBusenessAcess.GetMPRDepartmentById(id);

            return(Ok(model));
        }