2025-02-21 16:09:11 +01:00
|
|
|
|
using BS.Shared.Attributes;
|
2025-02-25 14:49:31 +01: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;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Service.ServiceContracts
|
|
|
|
|
|
{
|
|
|
|
|
|
[ServiceContract]
|
|
|
|
|
|
public interface IAdminService
|
|
|
|
|
|
{
|
|
|
|
|
|
[OperationContract]
|
2025-02-21 11:56:28 +01:00
|
|
|
|
[WebGet(UriTemplate = "/Test", ResponseFormat = WebMessageFormat.Json)]
|
2025-02-21 16:09:11 +01:00
|
|
|
|
[RequireNoTenant]
|
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-02-21 16:09:11 +01:00
|
|
|
|
[RequireNoTenant]
|
2025-02-21 11:56:28 +01:00
|
|
|
|
string Echo(string echo);
|
2025-02-25 11:50:47 +01:00
|
|
|
|
|
|
|
|
|
|
[OperationContract]
|
2025-02-25 14:49:31 +01:00
|
|
|
|
[WebInvoke(UriTemplate = "/GetGkvSum", Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
|
|
|
|
|
|
object GetGkvAbrechnungSumme(AdminServiceSumReqDC request);
|
2025-02-20 18:39:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|