예제 #1
0
        // Gets the highest customer count for a given day in a given month in a given year
        internal static object GetHighestCustomerCountByDay(int day, int month, int year)
        {
            string sql = SqlProcedures.GetHighestCustomerCountByDay(day, month, year);

            return(Call(sql));
        }