Example #1
0
 public JsonResult GetTripReason()
 {
     try
     {
         return(Json(_trackerService.GetAllTripReasonForDropDown(), JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         Logger.Write(ex, System.Reflection.MethodBase.GetCurrentMethod().Name, PageMaster.TripReason, _mySession.UserId);
         return(Json(string.Empty, JsonRequestBehavior.AllowGet));
     }
 }