示例#1
0
        // DELETE: api/Alumno/5
        public IHttpActionResult Delete(int id)
        {
            Log.Debug("" + System.Reflection.MethodBase.GetCurrentMethod().Name);

            bool IsDelete = studenBl.DeleteAlumnoById(id);

            return(Ok(IsDelete));
        }