15 lines
270 B
C#
15 lines
270 B
C#
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);
|
|
}
|
|
}
|