17 lines
352 B
C#
17 lines
352 B
C#
using DataDomain;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StockDAL.Interface
|
|
{
|
|
public interface IPersonRepository
|
|
{
|
|
IEnumerable<Person> GetAllOwners();
|
|
Person GetPersonById(int personId);
|
|
Person SavePerson(Person person);
|
|
}
|
|
}
|