2024-02-13 23:15:11 +04:00
|
|
|
|
using PlumbingRepairContracts.BindingModels;
|
|
|
|
|
using PlumbingRepairContracts.SearchModels;
|
|
|
|
|
using PlumbingRepairContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-02-14 11:14:37 +04:00
|
|
|
|
namespace PlumbingRepairContracts.BusinessLogicsContracts
|
2024-02-13 23:15:11 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IComponentLogic
|
|
|
|
|
{
|
|
|
|
|
List<ComponentViewModel>? ReadList(ComponentSearchModel? model);
|
|
|
|
|
ComponentViewModel? ReadElement(ComponentSearchModel model);
|
|
|
|
|
bool Create(ComponentBindingModel model);
|
|
|
|
|
bool Update(ComponentBindingModel model);
|
|
|
|
|
bool Delete(ComponentBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|