17 lines
496 B
C#
17 lines
496 B
C#
using CandyHouseContracts.DataModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CandyHouseContracts.BusinessLogicContracts;
|
|
|
|
public interface ISuppliesBusinessLogicContract
|
|
{
|
|
List<SuppliesDataModel> GetAllComponents();
|
|
SuppliesDataModel GetComponentByData(string data);
|
|
void InsertComponent(SuppliesDataModel componentDataModel);
|
|
void UpdateComponent(SuppliesDataModel componentDataModel);
|
|
}
|