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 IAccountLogic { List? ReadList(AccountSearchModel? model); AccountViewModel? ReadElement(AccountSearchModel model); bool Create(AccountBindingModel model); bool Update(AccountBindingModel model); bool Delete(AccountBindingModel model); } }