CostCalculationItem/IRaCIS.Core.Application.Con.../Doctor/ITrialExperienceService.cs

15 lines
588 B
C#

using System;
using IRaCIS.Application.ViewModels;
using IRaCIS.Core.Application.Contracts.RequestAndResponse;
namespace IRaCIS.Application.Interfaces
{
public interface ITrialExperienceService
{
TrialExperienceViewModel GetTrialExperience(Guid doctorId);
IResponseOutput AddOrUpdateTrialExperience(TrialExperienceCommand model);
IResponseOutput DeleteTrialExperience(Guid id);
IResponseOutput UpdateGcpExperience(GCPExperienceCommand model);
IResponseOutput UpdateOtherExperience(Guid doctorId, string otherClinicalExperience);
}
}