using PortalAccountsContracts.BindingModels; using PortalAccountsContracts.SearchModels; using PortalAccountsContracts.ViewModels; namespace PortalAccountsContracts.BusinessLogicsContracts { public interface IInterestLogic { List? ReadList(InterestSearchModel? model); InterestViewModel? ReadElement(InterestSearchModel model); bool Create(InterestBindingModel model); bool Update(InterestBindingModel model); bool Delete(InterestBindingModel model); } }