Migrations aufgefäumt
DateOnly hinzugefügt zur Model.
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
using System;
|
||||
using DaSaSo.Domain.Model;
|
||||
using DaSaSo.ViewModel.Interface;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
@@ -8,5 +10,14 @@ namespace DaSaSo.ViewModel
|
||||
{
|
||||
public class SewerPipeLinerViewModel : BaseViewModel
|
||||
{
|
||||
private readonly IActualProject _actualProject;
|
||||
public SewerPipeLinerViewModel(IActualProject actualProject)
|
||||
{
|
||||
_actualProject = actualProject;
|
||||
|
||||
if (_actualProject.AktuellSewerObject.PipeLiner == null)
|
||||
_actualProject.AktuellSewerObject.PipeLiner = new PipeLiner();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user