public void GetProjectThroughput_ThroughputMode(BenchmarkContext context)
        {
            ProjectBusiness projectBusiness = new ProjectBusiness();

            List <Project> project = projectBusiness.GetProjects().ToList();

            addCounter.Increment();
        }
 // GET: api/Projects
 public IQueryable <Project> GetProjects()
 {
     return(projectBusiness.GetProjects());
 }