15 lines
359 B
C#
15 lines
359 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Application;
|
|
|
|
namespace CompanyManagment.App.Contracts.Bank
|
|
{
|
|
public interface IBankApplication
|
|
{
|
|
BankViewModel GetBy(long id);
|
|
OperationResult Remove(long id);
|
|
OperationResult Create(CreateBank command);
|
|
OperationResult Edit(EditBank command);
|
|
List<BankViewModel> Search(string name);
|
|
}
|
|
}
|