21 lines
594 B
C#
21 lines
594 B
C#
|
using CarCenterContracts.BindingModels;
|
|||
|
using CarCenterContracts.SearchModels;
|
|||
|
using CarCenterContracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CarCenterContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IBossLogic
|
|||
|
{
|
|||
|
List<BossViewModel>? ReadList(BossSearchModel? model);
|
|||
|
BossViewModel? ReadElement(BossSearchModel model);
|
|||
|
bool Create(BossBindingModel model);
|
|||
|
bool Update(BossBindingModel model);
|
|||
|
bool Delete(BossBindingModel model);
|
|||
|
}
|
|||
|
}
|