14 lines
407 B
C#
14 lines
407 B
C#
using IRaCIS.Application.Contracts;
|
|
|
|
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);
|
|
|
|
|
|
}
|
|
} |