public HttpResponseMessage GetBigListPrependTestResults(int iterations) { TestModel resultBL = new TestModel(); TestService testService = new Services.TestService(); testService.ReadFiles(); resultBL = testService.PrependTest(iterations, "BigList"); return(Request.CreateResponse(HttpStatusCode.OK, resultBL)); }
public HttpResponseMessage GetRopePrependTestResults(int iterations) { TestModel resultRope = new TestModel(); TestService testService = new Services.TestService(); //testService.ReadFiles(); resultRope = testService.PrependTest(iterations, "Rope"); return(Request.CreateResponse(HttpStatusCode.OK, resultRope)); }
public HttpResponseMessage GetStringBuilderPrependTestResults(int iterations) { TestModel resultSB = new TestModel(); TestService testService = new Services.TestService(); testService.ReadFiles(); resultSB = testService.PrependTest(iterations, "StringBuilder"); return(Request.CreateResponse(HttpStatusCode.OK, resultSB)); }