Ejemplo n.º 1
0
        public async Task <UserChannel> RemoveFromChannel(ucDTO input)
        {
            var thisChannel = await userChannelRepository.RemoveUserFromChannel(input.Username, input.ChannelName);

            return(thisChannel);
        }
Ejemplo n.º 2
0
        public async Task <UserChannel> AddToChannel(ucDTO input)
        {
            var thisChannel = await userChannelRepository.AddUserToChannel(input.Username, input.ChannelName);

            return(thisChannel);
        }