using SchoolContracts.BindingModels; using SchoolContracts.SearchModels; using SchoolContracts.ViewModels; namespace SchoolContracts.BusinessLogicContracts { public interface IAccountLogic { List ReadList(AccountSearchModel model); AccountViewModel ReadElement(AccountSearchModel model); bool Create(AccountBindingModel model); bool GetAccountInfo(AccountSearchModel model, out double fullPrice, out double paidPrice); } }