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; ICallTypeService service = testServer.Host.Services.GetService(typeof(ICallTypeService)) as ICallTypeService; var model = new ApiCallTypeServerRequestModel(); model.SetProperties("B"); CreateResponse <ApiCallTypeServerResponseModel> createdResponse = await service.Create(model); createdResponse.Success.Should().BeTrue(); ActionResponse deleteResult = await client.CallTypeDeleteAsync(2); deleteResult.Success.Should().BeTrue(); ApiCallTypeServerResponseModel 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 ApiCallTypeServerModelMapper(); ApplicationDbContext context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext; ICallTypeService service = testServer.Host.Services.GetService(typeof(ICallTypeService)) as ICallTypeService; ApiCallTypeServerResponseModel model = await service.Get(1); ApiCallTypeClientRequestModel request = mapper.MapServerResponseToClientRequest(model); request.SetProperties("B"); UpdateResponse <ApiCallTypeClientResponseModel> updateResponse = await client.CallTypeUpdateAsync(model.Id, request); context.Entry(context.Set <CallType>().ToList()[0]).Reload(); updateResponse.Record.Should().NotBeNull(); updateResponse.Success.Should().BeTrue(); updateResponse.Record.Id.Should().Be(1); context.Set <CallType>().ToList()[0].Name.Should().Be("B"); updateResponse.Record.Id.Should().Be(1); updateResponse.Record.Name.Should().Be("B"); }
public CallLogController( ICallCategoryService CallCategoryService, ICallStatusService CallStatusService, ICallTypeService CallTypeService, ICustomerService CustomerService, ICallEmotionService CallEmotionService, ICallLogService CallLogService, IEntityReferenceService EntityReferenceService, IAppUserService AppUserService, ICustomerLeadService CustomerLeadService, IContactService ContactService, ICompanyService CompanyService, IOrganizationService OrganizationService, IOpportunityService OpportunityService, ICurrentContext CurrentContext , IHttpContextAccessor httpContextAccessor, DataContext _DataContext ) : base(httpContextAccessor, _DataContext) { this.CallCategoryService = CallCategoryService; this.CallStatusService = CallStatusService; this.CallTypeService = CallTypeService; this.CustomerService = CustomerService; this.CallEmotionService = CallEmotionService; this.CallLogService = CallLogService; this.EntityReferenceService = EntityReferenceService; this.AppUserService = AppUserService; this.CustomerLeadService = CustomerLeadService; this.ContactService = ContactService; this.CompanyService = CompanyService; this.OrganizationService = OrganizationService; this.OpportunityService = OpportunityService; this.CurrentContext = CurrentContext; }
public CallTypeController( ApiSettings settings, ILogger <CallTypeController> logger, ITransactionCoordinator transactionCoordinator, ICallTypeService callTypeService, IApiCallTypeServerModelMapper callTypeModelMapper ) : base(settings, logger, transactionCoordinator) { this.CallTypeService = callTypeService; this.CallTypeModelMapper = callTypeModelMapper; this.BulkInsertLimit = 250; this.MaxLimit = 1000; this.DefaultLimit = 250; }
public CallTypeController(ICallTypeService callTypeService) { _callTypeService = callTypeService; }