public IActionResult EditStudentFeeDiscount([FromBody] StudentFeeDiscount stuFeeDiscount) { try { var result = _studentBusiness.EditStudentFeeDiscount(stuFeeDiscount); return(Ok(result)); } catch (Exception ex) { return(BadRequest(ex)); } }