/// <summary> /// This method is used to get invoice line items list /// </summary> /// <param name="objCodeProp"></param> /// <returns></returns> /// <createdOn>Jul-21-2016</createdon> public bool ResetExportedInd(int billingID) { BillingDAL objBillingDAL = new BillingDAL(); try { CommonDAL.logger.LogInfo(typeof(string), string.Format(CultureInfo.InvariantCulture, "Called {2} function ::{0} {1}.", DateTime.Now.ToShortDateString(), DateTime.Now.ToShortTimeString(), MethodBase.GetCurrentMethod().Name)); return(objBillingDAL.ResetExportedInd(billingID)); } catch (Exception) { throw; } finally { CommonDAL.logger.LogInfo(typeof(string), string.Format(CultureInfo.InvariantCulture, "End {2} function ::{0} {1}.", DateTime.Now.ToShortDateString(), DateTime.Now.ToShortTimeString(), MethodBase.GetCurrentMethod().Name)); } }