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? ReadList(InterestSearchModel? model); InterestViewModel? ReadElement(InterestSearchModel model); bool Create(InterestBindingModel model); bool Update(InterestBindingModel model); bool Delete(InterestBindingModel model); } }