20 lines
395 B
C#
20 lines
395 B
C#
using ISPChk.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ISPChk
|
|
{
|
|
public class NetworkTest : INetworkTest
|
|
{
|
|
private ISPChkContext _context;
|
|
|
|
public NetworkTest()
|
|
{
|
|
//_context = new ISPChkContext("Data Source=ispchk.db");
|
|
}
|
|
}
|
|
}
|