23 lines
476 B
C#
23 lines
476 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.IO;
|
|
using System.Text;
|
|
using BeWo.Data.Access;
|
|
using BeWo.Data.Entities;
|
|
using BeWo.Service.DCEntityMapper;
|
|
using BS.Shared;
|
|
using BS.Shared.DataContracts;
|
|
using BS.Shared.Extensions;
|
|
|
|
namespace BeWo.Service.Invoicing.FibuExport
|
|
{
|
|
public class DefaultDatevExport : DefaultFiBuExport
|
|
{
|
|
public DefaultDatevExport(QueryDC query) : base(query)
|
|
{
|
|
}
|
|
|
|
|
|
}
|
|
} |