IImageRepository.php 138 B

12345
  1. <?php
  2. interface IImageRepository {
  3. public static function GetImagesByAlbum($albumId);
  4. public static function DeleteImages($imageIds);
  5. }