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