public void Inheritence()
            {
                var requestAsyncAggregate = new PlatformRequestAsyncAggregate(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);

                requestAsyncAggregate.Should().NotBeNull();
                requestAsyncAggregate.Should().BeAssignableTo <BaseRequestAsyncAggregate <Domain.Platform.Entities.Platform> >();
                requestAsyncAggregate.Should().BeAssignableTo <IPlatformRequestAsyncAggregate>();
                requestAsyncAggregate.Should().BeOfType <PlatformRequestAsyncAggregate>();
            }
 public void InheritsFromIPlatformRequestAsyncAggregate()
 {
     requestAggregate.Should().BeAssignableTo <IPlatformRequestAsyncAggregate>();
 }