Compare commits

..

No commits in common. "915a3e27f6dcba985e25590b68d30cdd6e113ef8" and "ad2f84c91d240171d63a1a7630f07940e5a94bd0" have entirely different histories.

5 changed files with 2 additions and 81 deletions

View File

@ -1,20 +0,0 @@
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 IBundlingLogic
{
List<BundlingViewModel>? ReadList(BundlingSearchModel? model);
BundlingViewModel? ReadElement(BundlingSearchModel model);
bool Create(BundlingBindingModel model);
bool Update(BundlingBindingModel model);
bool Delete(BundlingBindingModel model);
}
}

View File

@ -1,20 +0,0 @@
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 ICarLogic
{
List<CarViewModel>? ReadList(CarSearchModel? model);
CarViewModel? ReadElement(CarSearchModel model);
bool Create(CarBindingModel model);
bool Update(CarBindingModel model);
bool Delete(CarBindingModel model);
}
}

View File

@ -1,20 +0,0 @@
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 IFeatureLogic
{
List<FeatureViewModel>? ReadList(FeatureSearchModel? model);
FeatureViewModel? ReadElement(FeatureSearchModel model);
bool Create(FeatureBindingModel model);
bool Update(FeatureBindingModel model);
bool Delete(FeatureBindingModel model);
}
}

View File

@ -1,20 +0,0 @@
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 IStorekeeperLogic
{
List<StorekeeperViewModel>? ReadList(StorekeeperSearchModel? model);
StorekeeperViewModel? ReadElement(StorekeeperSearchModel model);
bool Create(StorekeeperBindingModel model);
bool Update(StorekeeperBindingModel model);
bool Delete(StorekeeperBindingModel model);
}
}

View File

@ -7,7 +7,8 @@
</PropertyGroup>
<ItemGroup>
<Folder Include="ViewModels\" />
<Folder Include="SearchModels\" />
<Folder Include="BusinessLogicsContracts\" />
<Folder Include="StoragesContracts\" />
</ItemGroup>