[Route("api/v1/typesofleaves/list")] //for leave type list dropdown public HttpResponseMessage GetLeaveTypesList() { HttpResponseMessage response = null; try { List <LeaveTypeListModel> leave_type_list = LeaveRepo.GetLeaveTypeList(); response = Request.CreateResponse(HttpStatusCode.OK, new EMSResponseMessage("EMS_001", "Success", leave_type_list)); } 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); }