18 lines
489 B
C#
18 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using PuferFishContracts.DataModels;
|
|
|
|
namespace PuferFishContracts.BusinessLogicsContracts;
|
|
|
|
public interface IBuyerBusinessLogicContract
|
|
{
|
|
List<BuyerDataModel> GetAllBuyers();
|
|
BuyerDataModel GetBuyerByData(string data);
|
|
void InsertBuyer(BuyerDataModel buyerDataModel);
|
|
void UpdateBuyer(BuyerDataModel buyerDataModel);
|
|
void DeleteBuyer(string id);
|
|
}
|