using IRaCIS.Application.Contracts; namespace IRaCIS.Application.Interfaces { public interface ISiteService { Task> GetSiteList(SiteQueryParam queryModel); Task> GetAllSiteList(); Task AddOrUpdateSite(SiteCommand AddModel); Task DeleteSite(Guid researchCenterId); } }