Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Last active March 2, 2022 16:25
Show Gist options
  • Save awswithdotnet/211f491a20dd4bb91df0759569a085a3 to your computer and use it in GitHub Desktop.
Save awswithdotnet/211f491a20dd4bb91df0759569a085a3 to your computer and use it in GitHub Desktop.
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