Files
BeWoPlaner/Service/ServiceContracts/IAdminService.cs

32 lines
1007 B
C#
Raw Normal View History

2025-06-03 15:46:41 +02:00
using BS.Shared.DataContracts.AdminService;
2025-02-21 16:09:11 +01: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-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-02-25 14:49:31 +01:00
[WebInvoke(UriTemplate = "/GetGkvSum", Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
[RequireApiAuthorization(IPAddressList = IPAddressList.AdminApi)]
2025-02-25 14:49:31 +01:00
object GetGkvAbrechnungSumme(AdminServiceSumReqDC request);
2025-02-20 18:39:11 +01:00
}
}