21 lines
609 B
C#
21 lines
609 B
C#
|
using FurnitureContracts.BindingModels;
|
|||
|
using FurnitureContracts.SearchModels;
|
|||
|
using FurnitureContracts.ViewModel;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FurnitureContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IMasterLogic
|
|||
|
{
|
|||
|
List<MasterViewModel>? ReadList(MasterSearchModel? model);
|
|||
|
MasterViewModel? ReadElement(MasterSearchModel model);
|
|||
|
bool Create(MasterBindingModel model);
|
|||
|
bool Update(MasterBindingModel model);
|
|||
|
bool Delete(MasterBindingModel model);
|
|||
|
}
|
|||
|
}
|