12345678910111213 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Hotline.JudicialManagement
- {
- public interface IJudicialManagementOrdersService
- {
- Task<string> AddAsync(JudicialManagementOrders order, bool autoAccept = false, CancellationToken cancellationToken = default);
- }
- }
|