Running against Northwind and StockDB

This commit is contained in:
2021-01-10 18:07:51 +01:00
parent dd530c02a9
commit c7254389e4
8 changed files with 159 additions and 4 deletions

View File

@ -0,0 +1,14 @@
using StockDomain;
using System;
using System.Collections.Generic;
namespace StockDal.Interface
{
public interface IStockMemberRepository
{
IEnumerable<StockMember> GetStocks();
bool Insert(StockMember stockMember);
bool Update(StockMember stockMember);
bool Delete(string stockMemberId);
}
}