EI-Image-Viewer-Api/IRaCIS.Core.Application/Service/Institution/Interface/ISiteService.cs

17 lines
500 B
C#

using System;
using System.Collections.Generic;
using IRaCIS.Application.Contracts;
using IRaCIS.Core.Infrastructure.Extention;
namespace IRaCIS.Application.Interfaces
{
public interface ISiteService
{
Task<PageOutput<SiteSelectDTO>> GetSiteList(SiteQueryParam queryModel);
Task<IEnumerable<SiteSelectionDTO>> GetAllSiteList();
Task<IResponseOutput> AddOrUpdateSite(SiteCommand AddModel);
Task<IResponseOutput> DeleteSite(Guid researchCenterId);
}
}