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;

            IOffCapabilityService service = testServer.Host.Services.GetService(typeof(IOffCapabilityService)) as IOffCapabilityService;
            var model = new ApiOffCapabilityServerRequestModel();

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

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

            ActionResponse deleteResult = await client.OffCapabilityDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
        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 ApiOffCapabilityServerModelMapper();
            ApplicationDbContext  context             = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IOffCapabilityService service             = testServer.Host.Services.GetService(typeof(IOffCapabilityService)) as IOffCapabilityService;
            ApiOffCapabilityServerResponseModel model = await service.Get(1);

            ApiOffCapabilityClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B");

            UpdateResponse <ApiOffCapabilityClientResponseModel> updateResponse = await client.OffCapabilityUpdateAsync(model.Id, request);

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

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.Name.Should().Be("B");
        }
 public OffCapabilityController(
     ApiSettings settings,
     ILogger <OffCapabilityController> logger,
     ITransactionCoordinator transactionCoordinator,
     IOffCapabilityService offCapabilityService,
     IApiOffCapabilityServerModelMapper offCapabilityModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.OffCapabilityService     = offCapabilityService;
     this.OffCapabilityModelMapper = offCapabilityModelMapper;
     this.BulkInsertLimit          = 250;
     this.MaxLimit     = 1000;
     this.DefaultLimit = 250;
 }