diff --git a/ShipyardContracts/BusinessLogicContracts/IMessageInfoLogic.cs b/ShipyardContracts/BusinessLogicContracts/IMessageInfoLogic.cs new file mode 100644 index 0000000..f08f1b8 --- /dev/null +++ b/ShipyardContracts/BusinessLogicContracts/IMessageInfoLogic.cs @@ -0,0 +1,17 @@ +using ShipyardContracts.BindingModels; +using ShipyardContracts.SearchModels; +using ShipyardContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ShipyardContracts.BusinessLogicContracts +{ + public interface IMessageInfoLogic + { + List? ReadList(MessageInfoSearchModel? model); + bool Create(MessageInfoBindingModel model); + } +}