using Ropin.Inspection.Model; using Ropin.Inspection.Model.ViewModel.LGS; using Ropin.Inspection.Service.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service.LGS.Interface { public interface IImageLibraryService : IBaseService, IBaseServiceById { Task> PageAsync(ImageLibraryInput input); } }