protected void Page_Load(object sender, EventArgs e)
    {
        m_SystemFactory = new SystemFactory();
        m_AuthFactory = new AuthFactory();
        m_LogService = m_SystemFactory.GetLogService();
        m_AuthSevice = m_AuthFactory.GetAuthService();

        if (!Page.IsPostBack)
        {
            InitData();
            fillGridView();
        }
    }
 public WebLogService()
 {
     m_SystemFactory = new SystemFactory();
     m_LogService = m_SystemFactory.GetLogService();
 }