19 lines
533 B
C#
19 lines
533 B
C#
|
using PortalAccountsContracts.BindingModels;
|
|||
|
using PortalAccountsContracts.SearchModels;
|
|||
|
using PortalAccountsContracts.ViewModels;
|
|||
|
|
|||
|
namespace PortalAccountsContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IInterestLogic
|
|||
|
{
|
|||
|
List<InterestViewModel>? ReadList(InterestSearchModel? model);
|
|||
|
|
|||
|
InterestViewModel? ReadElement(InterestSearchModel model);
|
|||
|
|
|||
|
bool Create(InterestBindingModel model);
|
|||
|
|
|||
|
bool Update(InterestBindingModel model);
|
|||
|
|
|||
|
bool Delete(InterestBindingModel model);
|
|||
|
}
|
|||
|
}
|