14 lines
503 B
C#
14 lines
503 B
C#
using _0_Framework_b.Domain;
|
|
using System.Collections.Generic;
|
|
using Company.Application.Contracts.AuthorizedBankDetails;
|
|
|
|
namespace Company.Domain.AuthorizedBankDetailsAgg
|
|
{
|
|
public interface IAuthorizedBankDetailsRepository : IRepository<long, AuthorizedBankDetails>
|
|
{
|
|
EditAuthorizedBankDetails GetDetails(long id);
|
|
List<AuthorizedBankDetailsViewModel> Search(AuthorizedBankDetailsSearchModel searchModel);
|
|
AuthorizedBankDetailsViewModel GetByIban(string iban);
|
|
}
|
|
}
|