-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SerializationService #16
Conversation
Two things:
For instance, this [1] doesn't work: this.SerializationService
.Setup(s => s.Serialize(It.IsAny<It.IsAnyType>(), It.IsAny<JsonTypeInfo<It.IsAnyType>>()))
.Returns((object value, JsonTypeInfo<object> typeInfo) =>
{
return ObjectSerializer.Serialize(value, typeInfo).ToArray();
});
|
e1c36ee
to
674f89d
Compare
Subtask 1
Subtask 2
ISerializationService
and add doc stringsSerializationService
AddSerializationService
AdvancedSystems.Core.Abstractions
SerializationService
andAddSerializationService
Subtask 3
CachingService
and useSerializationService
insteadSerializationService
inAddCachingService
as scoped serviceCachingServiceFixture
,CachingServiceTests
)