cleanup delete channel handler syntax (#1245)

This commit is contained in:
Jason Dove
2023-04-14 12:53:33 -05:00
committed by GitHub
parent ab55978732
commit b89deffda3
4 changed files with 30 additions and 87 deletions
@@ -7,6 +7,4 @@ public interface IChannelRepository
Task<Option<Channel>> Get(int id);
Task<Option<Channel>> GetByNumber(string number);
Task<List<Channel>> GetAll();
Task<List<Channel>> GetAllForGuide();
Task Delete(int channelId);
}