public async Task <IHttpActionResult> GetMPRDepartmentById(int id) { MPRDepartmentModel model = new MPRDepartmentModel(); model = await _rfqBusenessAcess.GetMPRDepartmentById(id); return(Ok(model)); }