using System; using System.Threading.Tasks; using Datory; namespace GxPress.Repository.Interface.Media { public interface IMediaLibraryRepository:IRepository { Task GetTaskAsync(int mediaId); } }