Files
irc-netcore-api/IRaCIS.Core.Application/Service/Visit/Interface/ISubjectService.cs
T
2023-05-19 10:59:41 +08:00

15 lines
427 B
C#

using IRaCIS.Application.Contracts;
using Microsoft.AspNetCore.Mvc;
namespace IRaCIS.Application.Interfaces
{
public interface ISubjectService
{
Task<IResponseOutput<string>> AddOrUpdateSubject([FromBody] SubjectCommand subjectCommand);
Task<IResponseOutput> DeleteSubject(Guid id);
Task<IResponseOutput> UpdateSubjectStatus(SubjectStatusChangeCommand subjectStatusChangeCommand);
}
}