public Response MyCarPoolApplication(int MemberId)
 {
     _response = new Response();
     try
     {
         CarPoolRegistrationBusiness objBDC = new CarPoolRegistrationBusiness();
         _response.responseData = objBDC.MyCarPoolApplication(MemberId);
         _response.message      = "Records saved successfully !!";
         _response.success      = true;
     }
     catch (Exception ex)
     {
         _response.success = false;
         _response.message = ex.Message.ToString();
     }
     finally
     {
         memberService = null;
     }
     return(_response);
 }
 public Response SearchCarPoolApplication(CarPoolRegistrationCustomModel model)
 {
     _response = new Response();
     try
     {
         CarPoolRegistrationBusiness objBDC = new CarPoolRegistrationBusiness();
         _response.responseData = objBDC.SearchCarPoolApplication(model);
         _response.message      = "Records loaded successfully !!";
         _response.success      = true;
     }
     catch (Exception ex)
     {
         _response.success = false;
         _response.message = ex.Message.ToString();
     }
     finally
     {
         memberService = null;
     }
     return(_response);
 }