using BankContracts.BindingModels; using BankContracts.SearchModels; using BankContracts.ViewModels; namespace BankContracts.BusinessLogicsContracts { public interface IRefillLogic { List? ReadList(RefillSearchModel? model); RefillViewModel? ReadElement(RefillSearchModel model); bool Create(RefillBindingModel model); bool Update(RefillBindingModel model); bool Delete(RefillBindingModel model); } }