10 lines
201 B
C#
10 lines
201 B
C#
using ROLAC.API.DTOs.Disbursement;
|
|
|
|
namespace ROLAC.API.Services;
|
|
|
|
public interface IChurchProfileService
|
|
{
|
|
Task<ChurchProfileDto> GetAsync();
|
|
Task UpdateAsync(UpdateChurchProfileRequest r);
|
|
}
|