コード例 #1
0
 /// <summary>
 /// Gets all products in the catalog
 /// </summary>
 public bool GetAllProducts(ProductDS productDS, int from, int count)
 {
     try
     {
         ProductDALC productDALC = new ProductDALC();
         return(productDALC.GetAllProducts(productDS, from, count));
     }
     catch (Exception e)
     {
         throw new ApplicationException(ResourceManager.GetString("RES_ExceptionGetCatalog"), e);
     }
 }