Skip to content

Instantly share code, notes, and snippets.

@explorer14
Created February 19, 2024 15:20
Show Gist options
  • Save explorer14/e2f7dbbbe482f754e64cb823fd132092 to your computer and use it in GitHub Desktop.
Save explorer14/e2f7dbbbe482f754e64cb823fd132092 to your computer and use it in GitHub Desktop.
public interface IPurchaseOrderRepository
{
void Create(PurchaseOrder purchaseOrder);
void Update(PurchaseOrder purchaseOrder);
PurchaseOrder GetById(PurchaseOrderId purchaseOrderId);
PurchaseOrder[] GetByOpeningDateRange(
DateTime searchStartDate, DateTime searchEndDate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment