19 lines
524 B
C#
Raw Normal View History

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;
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);
}
}