IMediaLableRepository.cs 257 B

1234567891011
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. namespace GxPress.Repository.Interface.Media
  5. {
  6. public interface IMediaLableRepository:IRepository
  7. {
  8. Task<IEnumerable<int>> GetMediaIdsAysnc(int lableId);
  9. }
  10. }