using _0_Framework_b.Domain; using System.Collections.Generic; using Company.Application.Contracts.AuthorizedBankDetails; namespace Company.Domain.AuthorizedBankDetailsAgg { public interface IAuthorizedBankDetailsRepository : IRepository { EditAuthorizedBankDetails GetDetails(long id); List Search(AuthorizedBankDetailsSearchModel searchModel); AuthorizedBankDetailsViewModel GetByIban(string iban); } }