IInvitationAdminService.cs
446 bytes
| 1 | using App.BLL.DTO; |
|---|---|
| 2 | |
| 3 | namespace App.BLL.Services.Admin; |
| 4 | |
| 5 | public interface IInvitationAdminService |
| 6 | { |
| 7 | Task<List<TripInvitationBllDto>> GetAllAsync(string? search); |
| 8 | Task<TripInvitationBllDto?> GetByIdAsync(Guid id); |
| 9 | Task CreateAsync(TripInvitationBllDto entity); |
| 10 | Task UpdateAsync(TripInvitationBllDto entity); |
| 11 | Task DeleteAsync(Guid id); |
| 12 | |
| 13 | Task<List<TripBllDto>> GetTripsAsync(); |
| 14 | Task<List<AppUserBllDto>> GetUsersAsync(); |
| 15 | } |
| 16 | |