public async void Should_AddAsync_Valid()
            {
                await using var context = new TestContext(ContextOptions);
                var repository = new ApprovalsRepository(
                    new Mock <ILogger <AbstractRepository <ApprovalsContext, ApprovalEntity> > >().Object,
                    context
                    );
                var newEntity = new ApprovalEntity();
                var result    = await repository.AddAsync(newEntity);

                Assert.NotNull(result);
            }
            public async void Should_GetOneByParameterAsync_Valid()
            {
                await using var context = new TestContext(ContextOptions);
                var repository = new ApprovalsRepository(
                    new Mock <ILogger <AbstractRepository <ApprovalsContext, ApprovalEntity> > >().Object,
                    context
                    );
                var newEntity = new ApprovalEntity {
                    Version = 99
                };
                var _ = await repository.AddAsync(newEntity);

                var result = await repository.GetOneByParameterAsync(
                    e => e.Version == 99
                    );

                Assert.NotNull(result);
            }