21 lines
573 B
C#
21 lines
573 B
C#
|
using Contracts.BindingModels;
|
|||
|
using Contracts.SearchModels;
|
|||
|
using Contracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.BusinessLogicContracts
|
|||
|
{
|
|||
|
public interface ISupplyLogic
|
|||
|
{
|
|||
|
List<SupplyViewModel>? ReadList(SupplySearchModel? model);
|
|||
|
SupplyViewModel? ReadElement(SupplySearchModel model);
|
|||
|
bool Create(SupplyBindingModel model);
|
|||
|
bool Update(SupplyBindingModel model);
|
|||
|
bool Delete(SupplyBindingModel model);
|
|||
|
}
|
|||
|
}
|