2025-09-27 19:32:20 +02:00
|
|
|
|
using System;
|
2025-02-20 18:39:11 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.ServiceModel;
|
|
|
|
|
|
using System.ServiceModel.Web;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2025-06-03 15:46:41 +02:00
|
|
|
|
using BeWo.Service.Attributes;
|
2025-09-27 19:32:20 +02:00
|
|
|
|
using BS.Shared.DataContracts.AdminService;
|
2025-02-20 18:39:11 +01:00
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Service.ServiceContracts
|
|
|
|
|
|
{
|
|
|
|
|
|
[ServiceContract]
|
|
|
|
|
|
public interface IAdminService
|
|
|
|
|
|
{
|
|
|
|
|
|
[OperationContract]
|
2025-02-21 11:56:28 +01:00
|
|
|
|
[WebGet(UriTemplate = "/Test", ResponseFormat = WebMessageFormat.Json)]
|
2025-06-17 15:46:04 +02:00
|
|
|
|
[RequireApiAuthorization(IgnoreTenant = true)]
|
2025-02-20 18:39:11 +01:00
|
|
|
|
string Test();
|
2025-02-21 11:56:28 +01:00
|
|
|
|
|
|
|
|
|
|
[OperationContract]
|
|
|
|
|
|
[WebInvoke(UriTemplate = "/Echo/{echo}", Method ="POST", ResponseFormat = WebMessageFormat.Json)]
|
2025-06-17 15:46:04 +02:00
|
|
|
|
[RequireApiAuthorization(IgnoreTenant = true)]
|
2025-02-21 11:56:28 +01:00
|
|
|
|
string Echo(string echo);
|
2025-02-25 11:50:47 +01:00
|
|
|
|
|
|
|
|
|
|
[OperationContract]
|
2025-09-23 10:44:27 +02:00
|
|
|
|
[WebInvoke(UriTemplate = "/GetGkvSum?detail={flag}", Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
|
2025-06-17 15:46:04 +02:00
|
|
|
|
[RequireApiAuthorization(IPAddressList = IPAddressList.AdminApi)]
|
2025-09-23 12:27:13 +02:00
|
|
|
|
AdminServiceSumResponseDC GetGkvAbrechnungSumme(AdminServiceSumReqDC request, string flag);
|
2025-02-20 18:39:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|