Example #1
0
        public IHttpActionResult Get(string date)
        {
            List <Item> response = new List <Item>();

            try
            {
                response = SortList.SortedList(date);
            }
            catch (Exception)
            {
                throw;
            }
            return(Ok(response));
        }