Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Last active March 2, 2022 16:25
Embed
What would you like to do?
DynamoDb Abstractions IDataClientFactory
namespace Abstractions;
public interface IDataClientFactory<T>
{
T GetClient();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment