db_AI-4/C sharp/db - demo -app/db - demo -app/dataAccess.cs

17 lines
324 B
C#
Raw Normal View History

2017-07-03 19:08:44 +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();
}
}
}