16 lines
370 B
C#
16 lines
370 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 IStockPersonConnect
|
|
{
|
|
IEnumerable<PersonStock> GetAllConnectionsByPersId(int personId);
|
|
PersonStock SavePersonStockConnection(PersonStock personStock);
|
|
}
|
|
}
|