Esempio n. 1
0
        // Gets the highest customer count for a given year
        internal static object GetHighestCustomerCountByYear(int day, int month, int year)
        {
            string sql = SqlProcedures.GetHighestCustomerCountByYear(day, month, year);

            return(Call(sql));
        }