Exemplo n.º 1
0
        public async static Task <ApiTestServer> StartNew(IStuffHolder stuffHolder)
        {
            var testServer = new ApiTestServer(stuffHolder);
            await testServer.Start();

            return(testServer);
        }
Exemplo n.º 2
0
 public ApiServer(int port, IStuffHolder stuffHolder)
 {
     this.stuffHolder = stuffHolder;
 }
Exemplo n.º 3
0
 public ApiTestServer(IStuffHolder stuffHolder)
 {
     cancel    = new CancellationTokenSource();
     apiServer = new ApiServer(port, stuffHolder);
 }
Exemplo n.º 4
0
 public StuffController(IStuffHolder stuffHolder)
 {
     this.stuffHolder = stuffHolder;
 }