interface galore
This commit is contained in:
parent
9ffb97cbd0
commit
2cc2ac4280
@ -8,7 +8,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Contracts.BindingModels
|
||||
{
|
||||
internal class SupplyBindingModel : ISupply
|
||||
public class SupplyBindingModel : ISupply
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
@ -1,4 +1,6 @@
|
||||
using Contracts.BindingModels;
|
||||
using Contracts.SearchModels;
|
||||
using Contracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@ -12,6 +14,7 @@ namespace Contracts.BusinessLogicContracts
|
||||
bool Create(ProductBindingModel model);
|
||||
bool Update(ProductBindingModel model);
|
||||
bool Delete(ProductBindingModel model);
|
||||
|
||||
List<ProductViewModel>? ReadList(ProductSearchModel? model);
|
||||
ProductViewModel? ReadElement(ProductSearchModel model);
|
||||
}
|
||||
}
|
||||
|
20
Contracts/BusinessLogicContracts/ISupplierLogic.cs
Normal file
20
Contracts/BusinessLogicContracts/ISupplierLogic.cs
Normal file
@ -0,0 +1,20 @@
|
||||
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 ISupplierLogic
|
||||
{
|
||||
List<SupplierViewModel>? ReadList(SupplierSearchModel? model);
|
||||
SupplierViewModel? ReadElement(SupplierSearchModel model);
|
||||
bool Create(SupplierBindingModel model);
|
||||
bool Update(SupplierBindingModel model);
|
||||
bool Delete(SupplierBindingModel model);
|
||||
}
|
||||
}
|
20
Contracts/BusinessLogicContracts/ISupplyDocLogic.cs
Normal file
20
Contracts/BusinessLogicContracts/ISupplyDocLogic.cs
Normal file
@ -0,0 +1,20 @@
|
||||
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 ISupplyDocLogic
|
||||
{
|
||||
List<SupplyDocViewModel>? ReadList(SupplyDocSearchModel? model);
|
||||
SupplyDocViewModel? ReadElement(SupplyDocSearchModel model);
|
||||
bool Create(SupplyDocBindingModel model);
|
||||
bool Update(SupplyDocBindingModel model);
|
||||
bool Delete(SupplyDocBindingModel model);
|
||||
}
|
||||
}
|
20
Contracts/BusinessLogicContracts/ISupplyLogic.cs
Normal file
20
Contracts/BusinessLogicContracts/ISupplyLogic.cs
Normal file
@ -0,0 +1,20 @@
|
||||
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);
|
||||
}
|
||||
}
|
@ -1,5 +1,6 @@
|
||||
using Contracts.BindingModels;
|
||||
using Contracts.SearchModels;
|
||||
using Contracts.ViewModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@ -10,14 +11,11 @@ namespace Contracts.StorageContracts
|
||||
{
|
||||
public interface IProductStorage
|
||||
{
|
||||
ProductBindingModel? Insert(ProductBindingModel model);
|
||||
|
||||
IEnumerable<ProductBindingModel> GetList(ProductSearchModel? model);
|
||||
|
||||
ProductBindingModel? GetElement(ProductSearchModel model);
|
||||
|
||||
ProductBindingModel? Update(ProductBindingModel model);
|
||||
|
||||
ProductBindingModel? Delete(ProductSearchModel model);
|
||||
List<ProductViewModel> GetFullList();
|
||||
List<ProductViewModel> GetFilteredList(ProductSearchModel model);
|
||||
ProductViewModel? GetElement(ProductSearchModel model);
|
||||
ProductViewModel? Insert(ProductBindingModel model);
|
||||
ProductViewModel? Update(ProductBindingModel model);
|
||||
ProductViewModel? Delete(ProductBindingModel model);
|
||||
}
|
||||
}
|
||||
|
21
Contracts/StorageContracts/ISupplierStorage.cs
Normal file
21
Contracts/StorageContracts/ISupplierStorage.cs
Normal file
@ -0,0 +1,21 @@
|
||||
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.StorageContracts
|
||||
{
|
||||
public interface ISupplierStorage
|
||||
{
|
||||
List<SupplierViewModel> GetFullList();
|
||||
List<SupplierViewModel> GetFilteredList(SupplierSearchModel model);
|
||||
SupplierViewModel? GetElement(SupplierSearchModel model);
|
||||
SupplierViewModel? Insert(SupplierBindingModel model);
|
||||
SupplierViewModel? Update(SupplierBindingModel model);
|
||||
SupplierViewModel? Delete(SupplierBindingModel model);
|
||||
}
|
||||
}
|
21
Contracts/StorageContracts/ISupplyDocStorage.cs
Normal file
21
Contracts/StorageContracts/ISupplyDocStorage.cs
Normal file
@ -0,0 +1,21 @@
|
||||
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.StorageContracts
|
||||
{
|
||||
public interface ISupplyDocStorage
|
||||
{
|
||||
List<SupplyDocViewModel> GetFullList();
|
||||
List<SupplyDocViewModel> GetFilteredList(SupplyDocSearchModel model);
|
||||
SupplyDocViewModel? GetElement(SupplyDocSearchModel model);
|
||||
SupplyDocViewModel? Insert(SupplyDocBindingModel model);
|
||||
SupplyDocViewModel? Update(SupplyDocBindingModel model);
|
||||
SupplyDocViewModel? Delete(SupplyDocBindingModel model);
|
||||
}
|
||||
}
|
21
Contracts/StorageContracts/ISupplyStorage.cs
Normal file
21
Contracts/StorageContracts/ISupplyStorage.cs
Normal file
@ -0,0 +1,21 @@
|
||||
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.StorageContracts
|
||||
{
|
||||
public interface ISupplyStorage
|
||||
{
|
||||
List<SupplyViewModel> GetFullList();
|
||||
List<SupplyViewModel> GetFilteredList(SupplySearchModel model);
|
||||
SupplyViewModel? GetElement(SupplySearchModel model);
|
||||
SupplyViewModel? Insert(SupplyBindingModel model);
|
||||
SupplyViewModel? Update(SupplyBindingModel model);
|
||||
SupplyViewModel? Delete(SupplyBindingModel model);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user