using AutomobilePlantContracts.BindingModels; using AutomobilePlantContracts.SearchModels; using AutomobilePlantContracts.ViewModels; namespace AutomobilePlantContracts.BusinessLogicsContracts { public interface IMessageInfoLogic { List? ReadList(MessageInfoSearchModel? model); bool Create(MessageInfoBindingModel model); bool Update(MessageInfoBindingModel model); MessageInfoViewModel? ReadElement(MessageInfoSearchModel model); } }