15 lines
270 B
C#
15 lines
270 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 IAddressRepository
|
|
{
|
|
Address GetAddressById(int AddressId);
|
|
}
|
|
}
|