Added possibilities for owners and there addresses
This commit is contained in:
@ -10,5 +10,6 @@ namespace StockDAL.Interface
|
||||
public interface IAddressRepository
|
||||
{
|
||||
Address GetAddressById(int AddressId);
|
||||
Address SaveAddress(Address address);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,6 +9,8 @@ namespace StockDAL.Interface
|
||||
{
|
||||
public interface IPersonRepository
|
||||
{
|
||||
IEnumerable<Person> GetAllOwners();
|
||||
Person GetPersonById(int personId);
|
||||
Person SavePerson(Person person);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user