From 8b8bde5fb52769a97a3961ffcc817deba3975249 Mon Sep 17 00:00:00 2001 From: Ivan_Starostin Date: Sun, 2 Jun 2024 18:42:24 +0400 Subject: [PATCH] Upload files to 'ShipyardContracts/BusinessLogicContracts' --- .../BusinessLogicContracts/IMessageInfoLogic.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ShipyardContracts/BusinessLogicContracts/IMessageInfoLogic.cs 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); + } +}