using BaseDomain.Results; using Postall.Domain.Dtos; using Postall.Domain.Services.Contracts; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Postall.Domain.Application { public class ChannelApplicationService { private readonly IChannelService _channelService; public ChannelApplicationService(IChannelService channelService) { _channelService = channelService; } public async Task>> GetUserChannelsAsync() { return await _channelService.GetUserChannelsAsync(); } } }