22 lines
675 B
C#
22 lines
675 B
C#
using AccountingWarehouseProductsContracts.BindingModels;
|
|
using AccountingWarehouseProductsContracts.SearchModels;
|
|
using AccountingWarehouseProductsContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AccountingWarehouseProductsContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IStandLogic
|
|
{
|
|
List<StandViewModel>? ReadList(StandSearchModel? model);
|
|
StandViewModel? ReadElement(StandSearchModel model);
|
|
|
|
bool Create(StandBindingModel model);
|
|
bool Update(StandBindingModel model);
|
|
bool Delete(StandBindingModel model);
|
|
}
|
|
}
|