2023-04-22 16:17:59 +04:00
|
|
|
|
using PrecastConcretePlantContracts.BindingModels;
|
|
|
|
|
using PrecastConcretePlantContracts.SearchModels;
|
|
|
|
|
using PrecastConcretePlantContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IMessageInfoLogic
|
|
|
|
|
{
|
|
|
|
|
List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model);
|
|
|
|
|
|
|
|
|
|
bool Create(MessageInfoBindingModel model);
|
2023-05-03 22:32:03 +04:00
|
|
|
|
bool Update(MessageInfoBindingModel model);
|
|
|
|
|
MessageInfoViewModel? ReadElement(MessageInfoSearchModel model);
|
|
|
|
|
|
2023-04-22 16:17:59 +04:00
|
|
|
|
}
|
|
|
|
|
}
|