Files

32 lines
1.0 KiB
C#
Raw Permalink Normal View History

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;
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)]
[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)]
[RequireApiAuthorization(IgnoreTenant = true)]
2025-02-21 11:56:28 +01:00
string Echo(string echo);
[OperationContract]
2025-09-23 10:44:27 +02:00
[WebInvoke(UriTemplate = "/GetGkvSum?detail={flag}", Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
[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
}
}