2017-12-07 16:45:25 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using Umbraco.Core.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Persistence.Repositories
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IMediaRepository : IContentRepository<int, IMedia>, IReadRepository<Guid, IMedia>
|
|
|
|
|
|
{
|
|
|
|
|
|
IMedia GetMediaByPath(string mediaPath);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|