using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel; using System.ServiceModel.Web; using System.Text; using System.Threading.Tasks; using BeWo.Service.Attributes; using BS.Shared.DataContracts.AdminService; namespace BeWo.Service.ServiceContracts { [ServiceContract] public interface IAdminService { [OperationContract] [WebGet(UriTemplate = "/Test", ResponseFormat = WebMessageFormat.Json)] [RequireApiAuthorization(IgnoreTenant = true)] string Test(); [OperationContract] [WebInvoke(UriTemplate = "/Echo/{echo}", Method ="POST", ResponseFormat = WebMessageFormat.Json)] [RequireApiAuthorization(IgnoreTenant = true)] string Echo(string echo); [OperationContract] [WebInvoke(UriTemplate = "/GetGkvSum?detail={flag}", Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)] [RequireApiAuthorization(IPAddressList = IPAddressList.AdminApi)] AdminServiceSumResponseDC GetGkvAbrechnungSumme(AdminServiceSumReqDC request, string flag); } }