This commit is contained in:
Chris Chen
2026-06-20 17:51:33 -07:00
parent f55807fa7d
commit 3558c67fd7
55 changed files with 3140 additions and 85 deletions
@@ -0,0 +1,9 @@
using ROLAC.API.DTOs.Disbursement;
namespace ROLAC.API.Services;
public interface IChurchProfileService
{
Task<ChurchProfileDto> GetAsync();
Task UpdateAsync(UpdateChurchProfileRequest r);
}