public async Task LoadImageInBoard(string path, string descr, string tags, int bid) { var image = await _storageService.AddImage(path, tags); await _userService.AddBoardImage(bid, image.Id, descr); }