21 lines
621 B
C#
21 lines
621 B
C#
using AccountsContracts.BindingModels;
|
|
using AccountsContracts.SearchModels;
|
|
using AccountsContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AccountsContracts.BusinessLogicContracts
|
|
{
|
|
public interface IInterestLogic
|
|
{
|
|
List<InterestViewModel>? ReadList(InterestSearchModel? model);
|
|
InterestViewModel? ReadElement(InterestSearchModel model);
|
|
bool Create(InterestBindingModel model);
|
|
bool Update(InterestBindingModel model);
|
|
bool Delete(InterestBindingModel model);
|
|
}
|
|
}
|