PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantContracts/BusinessLogicsContracts/IReinforcedLogic.cs
Катя Ихонкина f1a5244eef Коммит1
2023-02-19 11:27:59 +04:00

22 lines
687 B
C#

using PrecastConcretePlantContracts.BindingModels;
using PrecastConcretePlantContracts.SearchModels;
using PrecastConcretePlantContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.BusinessLogicsContracts
{
public interface IReinforcedLogic
{
List<ReinforcedViewModel>? ReadList(ReinforcedSearchModel? model);
ReinforcedViewModel? ReadElement(ReinforcedSearchModel model);
bool Create(ReinforcedBindingModel model);
bool Update(ReinforcedBindingModel model);
bool Delete(ReinforcedBindingModel model);
}
}