public async Task Should_Success_Read_Unposted_Journal()
        {
            var service = new JournalTransactionService(GetServiceProvider().Object, _dbContext(GetCurrentMethod()));
            var model   = _dataUtil(service).GetNewData();

            model.Status = "DRAFT";
            var createdData = await service.CreateAsync(model);

            var response = service.ReadUnPostedTransactionsByPeriod(DateTimeOffset.Now.Month, DateTimeOffset.Now.Year);

            Assert.NotEmpty(response);
        }