add quick add entry.

This commit is contained in:
Chris Chen
2026-06-20 20:42:06 -07:00
parent 87425b3276
commit 8061a60fe5
18 changed files with 1050 additions and 5 deletions
@@ -13,6 +13,11 @@ public interface IOfferingSessionService
Task ReopenAsync(int id);
Task ReplaceAsync(int id, CreateOfferingSessionRequest request);
// ── Mobile offering entry (anonymous, one line at a time) ────────────────
Task<OfferingEntrySummaryDto> GetEntrySummaryAsync(DateOnly date);
Task<OfferingEntryLineAddedDto> AppendLineAsync(DateOnly date, OfferingGivingLineRequest line);
Task<List<MemberTypeaheadDto>> SearchMembersForEntryAsync(string? search, int take);
Task SaveProofAsync(int id, Stream content, string fileName);
Task<(Stream stream, string contentType)?> OpenProofAsync(int id);
Task DeleteProofAsync(int id);