|
|
|
|
@ -447,8 +447,7 @@ namespace Gremlin.GremlinData.DBClasses
|
|
|
|
|
{
|
|
|
|
|
using (GremlinContext db = new())
|
|
|
|
|
{
|
|
|
|
|
DateTime now;
|
|
|
|
|
now = DateTime.Now;
|
|
|
|
|
DateTime now = DateTime.Now;
|
|
|
|
|
|
|
|
|
|
Random r = new();
|
|
|
|
|
|
|
|
|
|
@ -609,8 +608,7 @@ namespace Gremlin.GremlinData.DBClasses
|
|
|
|
|
//Eingelesenen Account in DB schreiben:
|
|
|
|
|
using (GremlinContext db = new())
|
|
|
|
|
{
|
|
|
|
|
DateTime now;
|
|
|
|
|
now = DateTime.Now;
|
|
|
|
|
DateTime now = DateTime.Now;
|
|
|
|
|
|
|
|
|
|
foreach (Contact contact in ContactsReadFromFile)
|
|
|
|
|
{
|
|
|
|
|
@ -1014,8 +1012,7 @@ namespace Gremlin.GremlinData.DBClasses
|
|
|
|
|
//Eingelesenen Account in DB schreiben:
|
|
|
|
|
using (GremlinContext db = new())
|
|
|
|
|
{
|
|
|
|
|
DateTime now;
|
|
|
|
|
now = DateTime.Now;
|
|
|
|
|
DateTime now = DateTime.Now;
|
|
|
|
|
|
|
|
|
|
foreach (Account account in AccountsReadFromFile)
|
|
|
|
|
{
|
|
|
|
|
@ -1796,8 +1793,7 @@ namespace Gremlin.GremlinData.DBClasses
|
|
|
|
|
{
|
|
|
|
|
using (GremlinContext db = new())
|
|
|
|
|
{
|
|
|
|
|
DateTime now;
|
|
|
|
|
now = DateTime.Now;
|
|
|
|
|
DateTime now = DateTime.Now;
|
|
|
|
|
List<ProductLine> productLines = db.ProductLines.ToList();
|
|
|
|
|
foreach (Product product in products)
|
|
|
|
|
{
|
|
|
|
|
|