2024-04-29 15:36:48 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UniversityContracts.BindingModels;
|
2024-04-29 17:26:26 +04:00
|
|
|
|
using UniversityContracts.SearchModels;
|
|
|
|
|
using UniversityContracts.ViewModels;
|
2024-04-29 15:36:48 +04:00
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface ICostLogic
|
|
|
|
|
{
|
|
|
|
|
List<CostViewModel> ReadList(CostSearchModel? model = null);
|
|
|
|
|
CostViewModel ReadElement(CostSearchModel model);
|
|
|
|
|
bool Create(CostBindingModel model);
|
|
|
|
|
bool Update(CostBindingModel model);
|
|
|
|
|
bool Delete(CostBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|