It is now possible to register owned stocks for keeping track on them

This commit is contained in:
2021-01-28 20:20:33 +01:00
parent ec71d60a2a
commit 3f737a8010
10 changed files with 174 additions and 24 deletions

View File

@ -7,8 +7,9 @@ namespace StockDal.Interface
public interface IStockMemberRepository
{
IEnumerable<StockMember> GetStocks();
bool Insert(StockMember stockMember);
//bool Insert(StockMember stockMember);
bool Update(StockMember stockMember);
bool Delete(string stockMemberId);
void InsertMany(List<StockMember> stockMembers);
}
}