public HttpResponseMessage DeleteHolidayList(int holiday_id) { HttpResponseMessage response = null; try { Holiday_List holiday = LeaveRepo.GetHolidayById(holiday_id); if (holiday != null) { LeaveRepo.DeleteHolidayList(holiday); response = Request.CreateResponse(HttpStatusCode.OK, new EMSResponseMessage("EMS_001", "Success", "Holiday successfully deleted")); } else { response = Request.CreateResponse(HttpStatusCode.OK, new EMSResponseMessage("EMS_501", "Invalid holiday id", "updated failed")); } } catch (Exception exception) { Debug.WriteLine(exception.Message); Debug.WriteLine(exception.GetBaseException()); response = Request.CreateResponse(HttpStatusCode.OK, new EMSResponseMessage("EMS_101", "Application Error", exception.Message)); } return(response); }