21 lines
508 B
C#
21 lines
508 B
C#
using BankYouBankruptContracts.BindingModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankYouBankruptContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IMessageInfoLogic
|
|
{
|
|
//List<MessageInfoViewModel>? ReadList(MessageInfoSearchModel? model);
|
|
|
|
//MessageInfoViewModel? ReadElement(MessageInfoSearchModel model);
|
|
|
|
bool Create(MessageInfoBindingModel model);
|
|
|
|
bool Update(MessageInfoBindingModel model);
|
|
}
|
|
}
|