-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99c0d97
commit f731fc8
Showing
8 changed files
with
136 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/CropCalulator/ | ||
/.idea/ | ||
/.github/ | ||
/CropApp/bin/ | ||
CropCalulator/ | ||
.idea/ | ||
.github/ | ||
CropApp/bin/ | ||
/CropApp/wwwroot/BreedingDict10000.json | ||
/CropApp/wwwroot/css/site.min.css | ||
/CropApp/wwwroot/js/site.min.js |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
namespace CropApp.Frontend | ||
{ | ||
public class ImpressumData | ||
{ | ||
public TMG5 tmg5; | ||
public RStV rStV; | ||
public Contact contact; | ||
public IDs ids; | ||
|
||
public string ByFirstName; | ||
public string BySurName; | ||
|
||
public string Conservancy; | ||
|
||
public ImpressumData() { } | ||
|
||
public ImpressumData(TMG5 tmg5, RStV rStV, Contact contact, IDs ids, string byFirstName, string bySurName, string conservancy) | ||
{ | ||
this.tmg5 = tmg5; | ||
this.rStV = rStV; | ||
this.contact = contact; | ||
this.ids = ids; | ||
this.ByFirstName = byFirstName; | ||
this.BySurName = bySurName; | ||
this.Conservancy = conservancy; | ||
} | ||
|
||
public class Contact | ||
{ | ||
public string FoneAreaCode; | ||
public string FoneNumber; | ||
public string FaxAreaCode; | ||
public string FaxNumber; | ||
public string EMail; | ||
|
||
public Contact() { } | ||
|
||
public Contact(string foneAreaCode, string foneNumber, string faxAreaCode, string faxNumber, string eMail) | ||
{ | ||
this.FoneAreaCode = foneAreaCode; | ||
this.FoneNumber = foneNumber; | ||
this.FaxAreaCode = faxAreaCode; | ||
this.FaxNumber = faxNumber; | ||
this.EMail = eMail; | ||
} | ||
} | ||
|
||
public class RStV | ||
{ | ||
public string FirstName; | ||
public string SurName; | ||
public string PLZ; | ||
public string City; | ||
public string Adress; | ||
|
||
public RStV() { } | ||
public RStV(string firstName, string surName, string adress, string plz, string city) | ||
{ | ||
this.FirstName = firstName; | ||
this.SurName = surName; | ||
this.PLZ = plz; | ||
this.City = city; | ||
this.Adress = adress; | ||
} | ||
} | ||
|
||
public class TMG5 | ||
{ | ||
public string FirstName; | ||
public string SurName; | ||
public string PLZ; | ||
public string City; | ||
public string Adress; | ||
public TMG5() { } | ||
|
||
public TMG5(string firstName, string surName, string adress, string plz, string city) | ||
{ | ||
this.FirstName = firstName; | ||
this.SurName = surName; | ||
this.PLZ = plz; | ||
this.City = city; | ||
this.Adress = adress; | ||
} | ||
} | ||
|
||
public class IDs | ||
{ | ||
public string VAT; | ||
public string Economic; | ||
public IDs() { } | ||
|
||
public IDs(string vat, string economic) | ||
{ | ||
this.VAT = vat; | ||
this.Economic = economic; | ||
} | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,35 +8,35 @@ | |
<h1>@ViewData["Title"]</h1> | ||
<p>Angaben gemäß § 5 TMG</p> | ||
<p> | ||
Max Muster <br> | ||
Musterweg <br> | ||
12345 Musterstadt <br> | ||
@Model.Data.tmg5.FirstName @Model.Data.tmg5.SurName<br> | ||
@Model.Data.tmg5.Adress <br> | ||
@Model.Data.tmg5.PLZ @Model.Data.tmg5.City <br> | ||
</p> | ||
<p> | ||
<strong>Vertreten durch: </strong><br> | ||
Max Muster<br> | ||
@Model.Data.ByFirstName @Model.Data.BySurName<br> | ||
</p> | ||
<p> | ||
<strong>Kontakt:</strong> <br> | ||
Telefon: 01234-789456<br> | ||
Fax: 1234-56789<br> | ||
E-Mail: <a href="mailto:[email protected]">max@muster.de</a> <br> | ||
Telefon: @Model.Data.contact.FoneAreaCode-@Model.Data.contact.FoneNumber<br> | ||
Fax: @Model.Data.contact.FaxAreaCode-@Model.Data.contact.FaxNumber<br> | ||
E-Mail: <a href="mailto:@Model.Data.contact.EMail">@Model.Data.contact.EMail</a> <br> | ||
</p> | ||
<p> | ||
<strong>Umsatzsteuer-ID: </strong><br> | ||
Umsatzsteuer-Identifikationsnummer gemäß §27a Umsatzsteuergesetz: Musterustid.<br><br> | ||
Umsatzsteuer-Identifikationsnummer gemäß §27a Umsatzsteuergesetz: @Model.Data.ids.VAT<br><br> | ||
<strong>Wirtschafts-ID: </strong><br> | ||
Musterwirtschaftsid<br> | ||
@Model.Data.ids.Economic<br> | ||
</p> | ||
<p> | ||
<strong>Aufsichtsbehörde:</strong><br> | ||
Musteraufsicht Musterstadt<br> | ||
@Model.Data.Conservancy<br> | ||
</p> | ||
<p> | ||
<strong>Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV:</strong><br> | ||
Max Muster <br> | ||
Musterweg<br> | ||
12345 Musterstadt <br> | ||
@Model.Data.rStV.FirstName @Model.Data.rStV.SurName<br> | ||
@Model.Data.rStV.Adress <br> | ||
@Model.Data.rStV.PLZ @Model.Data.rStV.City <br> | ||
</p> | ||
<p> | ||
<strong>Haftungsausschluss: </strong><br><br> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tmg5":{"FirstName":"Max","SurName":"Muster","PLZ":"12345","City":"Musterstadt","Adress":"Musterweg 1"},"rStV":{"FirstName":"Max","SurName":"Muster","PLZ":"12345","City":"Musterstadt","Adress":"Musterweg 1"},"contact":{"FoneAreaCode":"01234","FoneNumber":"789456","FaxAreaCode":"01234","FaxNumber":"789456","EMail":"[email protected]"},"ids":{"VAT":"Musterustid.","Economic":"Musterwirtschaftsid"},"ByFirstName":"Max","BySurName":"Muster","Conservancy":"Musteraufsicht Musterstadt"} |