Added code for Person / Address
This commit is contained in:
14
StockDal.Interface/IAddressRepository.cs
Normal file
14
StockDal.Interface/IAddressRepository.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using DataDomain;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StockDAL.Interface
|
||||
{
|
||||
public interface IAddressRepository
|
||||
{
|
||||
Address GetAddressById(int AddressId);
|
||||
}
|
||||
}
|
||||
14
StockDal.Interface/IPersonRepository.cs
Normal file
14
StockDal.Interface/IPersonRepository.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using DataDomain;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StockDAL.Interface
|
||||
{
|
||||
public interface IPersonRepository
|
||||
{
|
||||
Person GetPersonById(int personId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user