19 lines
524 B
C#
19 lines
524 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using UniversityContracts.BindingModels;
|
|||
|
|
|||
|
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);
|
|||
|
}
|
|||
|
}
|