Classes expanded
This commit is contained in:
16
DaSaSo.Domain/Model/Buildingsite.cs
Normal file
16
DaSaSo.Domain/Model/Buildingsite.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DaSaSo.Domain.Model
|
||||
{
|
||||
public class Buildingsite : DomainObject
|
||||
{
|
||||
public string BuildingSiteNumber { get; set; }
|
||||
public string Country { get; set; }
|
||||
public string ContactPerson { get; set; }
|
||||
public IEnumerable<SewerObjects> SewerObjects { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -10,5 +10,9 @@ namespace DaSaSo.Domain.Model
|
||||
{
|
||||
public string Firstname { get; set; }
|
||||
public string LastName { get; set; }
|
||||
public string Country { get; set; }
|
||||
public string Postcode { get; set; }
|
||||
public IEnumerable<Project> Projects { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,5 +10,6 @@ namespace DaSaSo.Domain.Model
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public Client Client { get; set; }
|
||||
public IEnumerable<Buildingsite> BuildingSites { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
6
DaSaSo.Domain/Model/SewerObjects.cs
Normal file
6
DaSaSo.Domain/Model/SewerObjects.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace DaSaSo.Domain.Model
|
||||
{
|
||||
public class SewerObjects
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user