Example #1
0
        public List <string> GetAllVehicleBrandCategory()
        {
            List <string> result = null;

            try
            {
                result = dbReadScopeManager.Execute(conn => DALPackageActivity.SelectAllVehicleBrandCategory(conn))?.ToList();
            }
            catch (Exception ex)
            {
                logger.Error(ex.Message, ex);
            }
            return(result ?? new List <string>());
        }