/// <summary>
 /// Returns an instance of the EPEFramework service
 /// </summary>
 /// <returns>the EPEFrameworkService client</returns>
 protected virtual BSFrameworkService.PageServiceSoapClient GetServiceClient()
 {
     client = new BSFrameworkService.PageServiceSoapClient();
     return(client);
 }
 /// <summary>
 /// Returns an instance of the PageInfoServiceDAO using the specified connString
 /// </summary>
 /// <param name="connString">the connection string</param>
 public PageInfoServiceDAO(string connString)
 {
     client = GetServiceClient();
     sqlDAO = GetPageSqlDAO(connString);
     SetExpirationPolicy();
 }