public StudentGroupServiceAsyncTests()
        {
            this.service = new CommentsServiceAsync();

            service.AddAsync(new Comments
            {
                Text = "Tasty!"
            }).Wait();

            service.AddAsync(new Comments
            {
                Text = "Delisious!"
            }).Wait();
        }
예제 #2
0
        public StudentGroupServiceAsyncTests()
        {
            this.service = new CommentsServiceAsync();

            service.AddAsync(new Comments
            {
                Text = "Tasty!"
            }).Wait();

            service.AddAsync(new Comments
            {
                Text = "Delisious!"
            }).Wait();
        }