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 ApiVehCapabilityServerModelMapper();
            ApplicationDbContext  context             = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IVehCapabilityService service             = testServer.Host.Services.GetService(typeof(IVehCapabilityService)) as IVehCapabilityService;
            ApiVehCapabilityServerResponseModel model = await service.Get(1);

            ApiVehCapabilityClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B");

            UpdateResponse <ApiVehCapabilityClientResponseModel> updateResponse = await client.VehCapabilityUpdateAsync(model.Id, request);

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

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.Name.Should().Be("B");
        }
        public virtual async void TestDelete()
        {
            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;

            IVehCapabilityService service = testServer.Host.Services.GetService(typeof(IVehCapabilityService)) as IVehCapabilityService;
            var model = new ApiVehCapabilityServerRequestModel();

            model.SetProperties("B");
            CreateResponse <ApiVehCapabilityServerResponseModel> createdResponse = await service.Create(model);

            createdResponse.Success.Should().BeTrue();

            ActionResponse deleteResult = await client.VehCapabilityDeleteAsync(2);

            deleteResult.Success.Should().BeTrue();
            ApiVehCapabilityServerResponseModel verifyResponse = await service.Get(2);

            verifyResponse.Should().BeNull();
        }
 public VehCapabilityController(
     ApiSettings settings,
     ILogger <VehCapabilityController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVehCapabilityService vehCapabilityService,
     IApiVehCapabilityServerModelMapper vehCapabilityModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VehCapabilityService     = vehCapabilityService;
     this.VehCapabilityModelMapper = vehCapabilityModelMapper;
     this.BulkInsertLimit          = 250;
     this.MaxLimit     = 1000;
     this.DefaultLimit = 250;
 }