Esempio n. 1
0
        public ActionResult <double> AddRandomTeams(int quantity)
        {
            Stopwatch sw = new Stopwatch();

            sw.Start();
            TeamRepository.AddRandomTeams(quantity);
            sw.Stop();

            return(new ActionResult <double>(sw.Elapsed.TotalMilliseconds));
        }