Skip to content

Instantly share code, notes, and snippets.

@explorer14
Created February 19, 2024 15:22
Show Gist options
  • Save explorer14/8e4f922b2c562fb62be3320873dc28db to your computer and use it in GitHub Desktop.
Save explorer14/8e4f922b2c562fb62be3320873dc28db to your computer and use it in GitHub Desktop.
public sealed class OraclePurchaseOrderRepository : IPurchaseOrderRepository
{
void Create(PurchaseOrder purchaseOrder)
{
// Oracle specific data access code
}
void Update(PurchaseOrder purchaseOrder)
{
// Oracle specific data access code
}
// .. other methods
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment