Beispiel #1
0
        static void Main(string[] args)
        {
            var apiRef = new SwaggerSampleAPI(new Uri("http://localhost:52759"));
            //AbstractImplementation syncImplementation = new SyncImplementation(apiRef);
            //syncImplementation.execute();

            AbstractImplementation asyncImplementation = new AsyncImplementation(apiRef);

            asyncImplementation.execute();

            Console.ReadLine();
        }
 public AbstractImplementation(SwaggerSampleAPI apiRef)
 {
     ApiRef = apiRef;
 }
Beispiel #3
0
 public SyncImplementation(SwaggerSampleAPI apiRef) : base(apiRef)
 {
 }