Пример #1
0
        public async Task LoadImageInChannel(string path, string descr, string tags, int id)
        {
            var image = await _storageService.AddImage(path, tags);

            await _channelService.AddChannelImage(id, image.Id, descr);
        }