10 lines
171 B
C#
10 lines
171 B
C#
namespace WpfLibrary;
|
|
|
|
public class DataAccess : IDataAccess
|
|
{
|
|
public string GetData()
|
|
{
|
|
return "This is the data from the Data Access class!";
|
|
}
|
|
}
|