2023-04-06 14:34:58 +04:00
|
|
|
|
using CanteenContracts.BindingModels;
|
|
|
|
|
using CanteenContracts.SearchModel;
|
|
|
|
|
using CanteenContracts.View;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CanteenContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IManagerLogic
|
|
|
|
|
{
|
|
|
|
|
List<ManagerViewModel>? ReadList(ManagerSearchModel? model);
|
|
|
|
|
ManagerViewModel? ReadElement(ManagerSearchModel model);
|
|
|
|
|
bool Create(ManagerBindingModel model);
|
|
|
|
|
bool Update(ManagerBindingModel model);
|
2023-06-19 09:12:18 +04:00
|
|
|
|
bool SendMail(MailSendInfoBindingModel emailInfo);
|
2023-04-06 14:34:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|