Ejemplo n.º 1
0
        public ActionResult Create(DestinationPostModel model)
        {
            var destinationModel = _mapper.Map <DestinationModel>(model);

            _destinationService.Create(destinationModel);
            return(new EmptyResult());
        }
Ejemplo n.º 2
0
        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;

            IDestinationService service = testServer.Host.Services.GetService(typeof(IDestinationService)) as IDestinationService;
            var model = new ApiDestinationServerRequestModel();

            model.SetProperties(1, "B", 2);
            CreateResponse <ApiDestinationServerResponseModel> createdResponse = await service.Create(model);

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

            ActionResponse deleteResult = await client.DestinationDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }