using _0_Framework.Domain; using System.Collections.Generic; using CompanyManagment.App.Contracts.Module; namespace Company.Domain.ModuleAgg; public interface IModuleRepozitory : IRepository { EditModule GetDetails( long id); List Search(ModuleSearchModel SearchModel); List GetAllModule(); }