Ejemplo n.º 1
0
 public static List <IPProxy> GetIPProxyListAll()
 {
     try
     {
         iPProxyDao = new IPProxyDao();
         return(iPProxyDao.GetIPProxyListAll());
         //return aGNews_ArticlesDAO.
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 2
0
 public static void CreateIPProxy(IPProxy iPProxy)
 {
     try
     {
         iPProxyDao = new IPProxyDao();
         iPProxyDao.CreateIPProxy(iPProxy);
         //return aGNews_ArticlesDAO.
     }
     catch (Exception)
     {
         throw;
     }
 }