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