16 lines
363 B
C#
Raw Normal View History

2025-02-18 01:17:27 +04:00
using NorthBridgeContract.DataModels;
namespace NorthBridgeContract.BusinessLogicsContracts;
public interface IBuyerBusinessLogicContract
{
List<BuyerDataModel> GetAllBuyers();
BuyerDataModel GetBuyerByData(string data);
void InsertBuyer(BuyerDataModel buyerDataModel);
void UpdateBuyer(BuyerDataModel buyerDataModel);
void DeleteBuyer(string id);
}