private void Initialize()
 {
     using (ILogMethod method = Log.LogMethod(this.DYN_MODULE_NAME, "Initialize"))
     {
         try
         {
             _serverInstance = ExCommsServerImpl.Current;
             _ticketGlobalsCollection = new TicketGlobalCollection();
             _siteDetail = ExCommsDataContext.Current.GetSiteDetails();
             _ticketLocationCode = ExCommsDataContext.Current.GetSettingValue("TICKET_LOCATION_CODE", _siteDetail.Code);
         }
         catch (Exception ex)
         {
             method.Exception(ex);
             Environment.FailFast("Unable to intialize Module Helper");
         }
     }
 }
 private void Initialize()
 {
     using (ILogMethod method = Log.LogMethod(this.DYN_MODULE_NAME, "Initialize"))
     {
         try
         {
             _serverInstance          = ExCommsServerImpl.Current;
             _ticketGlobalsCollection = new TicketGlobalCollection();
             _siteDetail         = ExCommsDataContext.Current.GetSiteDetails();
             _ticketLocationCode = ExCommsDataContext.Current.GetSettingValue("TICKET_LOCATION_CODE", _siteDetail.Code);
         }
         catch (Exception ex)
         {
             method.Exception(ex);
             Environment.FailFast("Unable to intialize Module Helper");
         }
     }
 }