23 lines
543 B
C#
23 lines
543 B
C#
|
using BankContracts.SearchModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BankContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IDebitingLogic
|
|||
|
{
|
|||
|
List<DebitingViewModel>? ReadList(DebitingSearchModel? model);
|
|||
|
|
|||
|
DebitingViewModel? ReadElement(DebitingSearchModel model);
|
|||
|
|
|||
|
bool Create(DebitingBindingModel model);
|
|||
|
|
|||
|
bool Update(DebitingBindingModel model);
|
|||
|
|
|||
|
bool Delete(DebitingBindingModel model);
|
|||
|
}
|
|||
|
}
|