using BS.Shared.DataContracts.AdminService; using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Web; using System.ServiceModel; using System.Text; using System.Threading.Tasks; using BeWo.Service.Attributes; using System.IO; using BS.Shared.Core; using BS.Shared.DataContracts; namespace BeWo.Service.ServiceContracts { [ServiceContract] public interface IApiService { //[OperationContract] //[WebGet(UriTemplate = "/Test", ResponseFormat = WebMessageFormat.Json)] //[RequireApiAuthorization(IgnoreTenant = true)] //ApiResponse Test(); [OperationContract] [WebInvoke(UriTemplate = "/GetGkvSum", Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)] [RequireApiAuthorization(ApiKeyName = WebSecretConfigSetting.GetGkvSumApiKey, IPAddressList = IPAddressList.AdminApi)] ApiResponse GetGkvAbrechnungSumme(AdminServiceSumReqDC request); } }