Migráció Debrának 2.0

This commit is contained in:
2020-09-04 14:36:45 +02:00
parent 621f9a02ce
commit b1c2db4f35
10 changed files with 1364 additions and 17 deletions
@@ -34,6 +34,9 @@ namespace Nuvolar.Module.BusinessObjects.Migration
private string _SQLPassword;
private string _SQLDatabase;
private DateTime _DateFrom;
private DateTime _DateTo;
public string SQLServer
{
get { return _SQLServer; }
@@ -65,5 +68,16 @@ namespace Nuvolar.Module.BusinessObjects.Migration
set { SetPropertyValue(nameof(SQLDatabase), ref _SQLDatabase, value); }
}
public DateTime DateFrom
{
get { return _DateFrom; }
set { SetPropertyValue(nameof(DateFrom), ref _DateFrom, value); }
}
public DateTime DateTo
{
get { return _DateTo; }
set { SetPropertyValue(nameof(DateTo), ref _DateTo, value); }
}
}
}