Intial commit. THe bare bones of a REST .NET Core app have been made.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using SecureCore.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SecureCore.Services
|
||||
{
|
||||
public interface IDataService
|
||||
{
|
||||
List<Employee> Get();
|
||||
Employee GetById(int id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user