11 lines
288 B
C#
11 lines
288 B
C#
namespace EnotaryoPH.Web.Common.Services
|
|
{
|
|
public interface IConferenceSheduleService
|
|
{
|
|
Task<Guid> GetOrCreateScheduleIDAsync(Guid transaction_UID);
|
|
|
|
Task StartRecordingAsync(Guid transaction_UID);
|
|
|
|
Task StopRecordingAsync(Guid transaction_UID);
|
|
}
|
|
} |