Add project files.

This commit is contained in:
2021-02-12 08:09:38 +01:00
parent 1644fce30a
commit fcad75f530
33 changed files with 2768 additions and 0 deletions

View File

@ -0,0 +1,15 @@
using StockDomain;
using System;
using System.Collections.Generic;
namespace StockDal.Interface
{
public interface IStockMemberRepository
{
IEnumerable<StockMember> GetStocks();
//bool Insert(StockMember stockMember);
void UpdateActPrice(int Id, decimal price);
bool Delete(string stockMemberId);
void InsertMany(List<StockMember> stockMembers);
}
}