public ApiPostResponse SaveTractorUsersDetailV2(TractorUsers obj)
        {
            ReasonStatusBal          _rsbal       = new ReasonStatusBal();
            ApiPostResponse          objSavedData = new ApiPostResponse();
            int                      flag         = 0;
            Dictionary <string, int> returndata   = new Dictionary <string, int>();

            returndata.Add("status", 0);

            try
            {
                objSavedData = _rsbal.SaveTractorUserDetailV2(obj);
            }
            catch (Exception ex)
            {
                LogDal.ErrorLog(this.GetType().Name, MethodBase.GetCurrentMethod().Name, ex.Message, 0);
            }

            return(objSavedData);
        }
        public ApiPostResponse SaveTractorUserDetail(TractorUsers obj)
        {
            ApiPostResponse objCreateData = _rsdal.SaveTractorUserDetail(obj.FarmerName, obj.StateID, obj.MobileNo, obj.CategoryId, obj.BzProductId, obj.ModelNo, obj.QuotationPrice, obj.RequestSource, obj.DemoDate, obj.TimeSlot);

            return(objCreateData);
        }
        public ApiPostResponse SaveTractorUserDetailV2(TractorUsers obj)
        {
            ApiPostResponse objCreateData = _rsdal.SaveTractorUserDetailV2(obj.FarmerName, obj.StateID, obj.MobileNo, obj.CategoryId, obj.ModelNo, obj.QuotationPrice);

            return(objCreateData);
        }