22 lines
568 B
C#
22 lines
568 B
C#
using BeWo.Data.Entities;
|
|
using BS.Shared;
|
|
using BS.Shared.Attributes;
|
|
using BS.Shared.DataContracts;
|
|
using BS.Shared.DataContracts.Feature.AI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.ServiceContracts.Enhanced
|
|
{
|
|
[ServiceContract]
|
|
public interface IAccountingEnhancedService : IService
|
|
{
|
|
[FaultContract(typeof(BeWoFault))]
|
|
[OperationContract]
|
|
byte[] CreateXRechnung(long invoice_base_oid, int report_type, string report_url);
|
|
}
|
|
} |