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