CourseWork_FurnitureFactory/FurnitureFactory/FurnitureContracts/BusinessLogicsContracts/IMasterLogic.cs
2023-04-07 16:40:24 +04:00

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