15 lines
489 B
C#
15 lines
489 B
C#
using SchoolContracts.BindingModels;
|
|
using SchoolContracts.SearchModels;
|
|
using SchoolContracts.ViewModels;
|
|
|
|
namespace SchoolContracts.BusinessLogicContracts
|
|
{
|
|
public interface IAccountLogic
|
|
{
|
|
List<AccountViewModel> ReadList(AccountSearchModel model);
|
|
AccountViewModel ReadElement(AccountSearchModel model);
|
|
bool Create(AccountBindingModel model);
|
|
bool GetAccountInfo(AccountSearchModel model, out double fullPrice, out double paidPrice);
|
|
}
|
|
}
|