profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
ITripAdminService.cs 401 bytes
1 using App.BLL.DTO;
2
3 namespace App.BLL.Services.Admin;
4
5 public interface ITripAdminService
6 {
7 Task<List<TripBllDto>> GetAllAsync(string? search);
8 Task<List<CurrencyBllDto>> GetAllCurrenciesAsync();
9 Task<TripBllDto?> GetByIdAsync(Guid id);
10 Task CreateAsync(TripBllDto entity);
11 Task UpdateAsync(TripBllDto entity);
12 Task DeleteAsync(Guid id);
13 Task<bool> ExistsAsync(Guid id);
14 }
15