public virtual async void TestUpdate()
        {
            var builder = new WebHostBuilder()
                          .UseEnvironment("Production")
                          .UseStartup <TestStartup>();
            TestServer testServer = new TestServer(builder);

            var client = new ApiClient(testServer.CreateClient());

            client.SetBearerToken(JWTTestHelper.GenerateBearerToken());
            var mapper = new ApiIncludedColumnTestServerModelMapper();
            ApplicationDbContext       context             = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IIncludedColumnTestService service             = testServer.Host.Services.GetService(typeof(IIncludedColumnTestService)) as IIncludedColumnTestService;
            ApiIncludedColumnTestServerResponseModel model = await service.Get(1);

            ApiIncludedColumnTestClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B", "B");

            UpdateResponse <ApiIncludedColumnTestClientResponseModel> updateResponse = await client.IncludedColumnTestUpdateAsync(model.Id, request);

            context.Entry(context.Set <IncludedColumnTest>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <IncludedColumnTest>().ToList()[0].Name.Should().Be("B");
            context.Set <IncludedColumnTest>().ToList()[0].Name2.Should().Be("B");

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.Name.Should().Be("B");
            updateResponse.Record.Name2.Should().Be("B");
        }
        public virtual async void TestBulkInsert()
        {
            var builder = new WebHostBuilder()
                          .UseEnvironment("Production")
                          .UseStartup <TestStartup>();
            TestServer testServer = new TestServer(builder);
            var        client     = new ApiClient(testServer.CreateClient());

            client.SetBearerToken(JWTTestHelper.GenerateBearerToken());

            ApplicationDbContext context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;

            var model = new ApiIncludedColumnTestClientRequestModel();

            model.SetProperties("B", "B");
            var model2 = new ApiIncludedColumnTestClientRequestModel();

            model2.SetProperties("C", "C");
            var request = new List <ApiIncludedColumnTestClientRequestModel>()
            {
                model, model2
            };
            CreateResponse <List <ApiIncludedColumnTestClientResponseModel> > result = await client.IncludedColumnTestBulkInsertAsync(request);

            result.Success.Should().BeTrue();
            result.Record.Should().NotBeNull();

            context.Set <IncludedColumnTest>().ToList()[1].Name.Should().Be("B");
            context.Set <IncludedColumnTest>().ToList()[1].Name2.Should().Be("B");

            context.Set <IncludedColumnTest>().ToList()[2].Name.Should().Be("C");
            context.Set <IncludedColumnTest>().ToList()[2].Name2.Should().Be("C");
        }
        public virtual ApiIncludedColumnTestClientRequestModel MapServerResponseToClientRequest(
            ApiIncludedColumnTestServerResponseModel response)
        {
            var request = new ApiIncludedColumnTestClientRequestModel();

            request.SetProperties(
                response.Name,
                response.Name2);
            return(request);
        }
        public void MapClientResponseToRequest()
        {
            var mapper = new ApiIncludedColumnTestModelMapper();
            var model  = new ApiIncludedColumnTestClientResponseModel();

            model.SetProperties(1, "A", "A");
            ApiIncludedColumnTestClientRequestModel response = mapper.MapClientResponseToRequest(model);

            response.Should().NotBeNull();
            response.Name.Should().Be("A");
            response.Name2.Should().Be("A");
        }