fix: Result & DTOs for GetById + cleanup
This commit is contained in:
@@ -9,6 +9,6 @@ public interface ITicketService
|
||||
//TODO: implement Repository
|
||||
IEnumerable<TicketResponse> GetAll();
|
||||
|
||||
Ticket? GetById(Guid id);
|
||||
Result<TicketResponse> GetById(Guid id);
|
||||
Result<CreateTicketResponse> Create(CreateTicketRequest request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user