Kommentare, Autoren & Projektablauf
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
using Core;
|
||||
// Export: Radu Catalin Calcan / PBS2H23Aca mit Unterstützung durch Jan Conze
|
||||
|
||||
using Core;
|
||||
|
||||
namespace Projekt_Calcan_Conze_Export.Models;
|
||||
|
||||
@@ -34,6 +36,15 @@ internal class Billing
|
||||
{
|
||||
List<string> lines =
|
||||
[
|
||||
"Rechnungszeitraum (von)"
|
||||
+ Constants.Separator
|
||||
+ "Rechnungszeitraum (bis)"
|
||||
+ Constants.Separator
|
||||
+ "Kundennummer"
|
||||
+ Constants.Separator
|
||||
+ "Kundenname"
|
||||
+ Constants.Separator
|
||||
+ "Gesamtbetrag",
|
||||
this.StartDate.ToString(Constants.DateFormat)
|
||||
+ Constants.Separator
|
||||
+ this.EndDate.ToString(Constants.DateFormat)
|
||||
@@ -42,8 +53,15 @@ internal class Billing
|
||||
+ Constants.Separator
|
||||
+ this.CustomerName
|
||||
+ Constants.Separator
|
||||
+ this.TotalAmount.ToString(Constants.MoneyFormat)
|
||||
|
||||
+ this.TotalAmount.ToString(Constants.MoneyFormat),
|
||||
"Bereich"
|
||||
+ Constants.Separator
|
||||
+ "Grundbetrag"
|
||||
+ Constants.Separator
|
||||
+ "Anzahl"
|
||||
+ Constants.Separator
|
||||
+ "Betrag"
|
||||
+ Constants.Separator
|
||||
];
|
||||
|
||||
lines.AddRange(
|
||||
|
@@ -1,4 +1,6 @@
|
||||
using Core;
|
||||
// Export: Radu Catalin Calcan / PBS2H23Aca mit Unterstützung durch Jan Conze
|
||||
|
||||
using Core;
|
||||
using Projekt_Calcan_Conze_Export.Repositories;
|
||||
using System.Globalization;
|
||||
|
||||
|
@@ -1,4 +1,6 @@
|
||||
using Core;
|
||||
// Export: Radu Catalin Calcan / PBS2H23Aca mit Unterstützung durch Jan Conze
|
||||
|
||||
using Core;
|
||||
using MySql.Data.MySqlClient;
|
||||
using Projekt_Calcan_Conze_Export.Models;
|
||||
using System.Data;
|
||||
|
Reference in New Issue
Block a user