26 lines
776 B
C#
26 lines
776 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.Shared.Domain
|
|
{
|
|
public class Auftraggeber : DBObject
|
|
{
|
|
public string Name { get; set; } = String.Empty;
|
|
public string Strasse { get; set; } = String.Empty;
|
|
public string Ort { get; set; } = String.Empty;
|
|
public string Postleitzahl { get; set; } = String.Empty;
|
|
public string Ansprechpartner { get; set; } = String.Empty;
|
|
public string Telefonnummer { get; set; } = String.Empty;
|
|
|
|
public bool DataChanged { get; set; } = false;
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} [{1}]", Name, Ansprechpartner);
|
|
}
|
|
}
|
|
}
|