db_AI-4/csharp/db - demo -app/db - demo -app/dataAccess.cs

17 lines
324 B
C#
Raw Normal View History

2017-07-15 20:12:14 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace db___demo__app
{
public class dataAccess
{
public List<locations> GetLocations(string location_name)
{
throw new NotImplementedException();
}
}
}