Beispiel #1
0
 ///<Summary>
 ///AlphabeticalListOfProductsCollectionCount
 ///This method returns the collection count of BOAlphabeticalListOfProducts objects
 ///</Summary>
 ///<returns>
 ///Int32
 ///</returns>
 ///<parameters>
 ///
 ///</parameters>
 public static Int32 AlphabeticalListOfProductsCollectionCount(IAlphabeticalListOfProductsRepository iAlphabeticalListOfProductsRepository)
 {
     Doing(null);
     try
     {
         Int32 objCount = iAlphabeticalListOfProductsRepository.SelectAllCount();
         return(objCount);
     }
     catch (Exception ex)
     {
         Failed(null, ex);
         Handle(null, ex);
         return(-1);
     }
 }