diff --git a/FurnitureFactory/FurnitureBusinessLogic/BusinessLogics/OrdersLogic.cs b/FurnitureFactory/FurnitureBusinessLogic/BusinessLogics/OrdersLogic.cs deleted file mode 100644 index 971d0ae..0000000 --- a/FurnitureFactory/FurnitureBusinessLogic/BusinessLogics/OrdersLogic.cs +++ /dev/null @@ -1,35 +0,0 @@ -using FurnitureContracts.BindingModels; -using FurnitureContracts.BusinessLogicsContracts; -using FurnitureContracts.SearchModels; -using FurnitureContracts.ViewModel; - -namespace FurnitureBusinessLogic.BusinessLogics -{ - public class OrdersLogic : IOrdersLogic - { - public bool Create(OrdersBindingModel model) - { - throw new NotImplementedException(); - } - - public bool Delete(OrdersBindingModel model) - { - throw new NotImplementedException(); - } - - public OrdersViewModel? ReadElement(OrderSearchModel model) - { - throw new NotImplementedException(); - } - - public List? ReadList(OrderSearchModel? model) - { - throw new NotImplementedException(); - } - - public bool Update(OrdersBindingModel model) - { - throw new NotImplementedException(); - } - } -} diff --git a/FurnitureFactory/FurnitureDataBaseImplement/Class1.cs b/FurnitureFactory/FurnitureDataBaseImplement/Class1.cs new file mode 100644 index 0000000..1d5804e --- /dev/null +++ b/FurnitureFactory/FurnitureDataBaseImplement/Class1.cs @@ -0,0 +1,7 @@ +namespace FurnitureDataBaseImplement +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/FurnitureFactory/FurnitureBusinessLogic/FurnitureBusinessLogic.csproj b/FurnitureFactory/FurnitureDataBaseImplement/FurnitureDataBaseImplement.csproj similarity index 53% rename from FurnitureFactory/FurnitureBusinessLogic/FurnitureBusinessLogic.csproj rename to FurnitureFactory/FurnitureDataBaseImplement/FurnitureDataBaseImplement.csproj index 782e465..132c02c 100644 --- a/FurnitureFactory/FurnitureBusinessLogic/FurnitureBusinessLogic.csproj +++ b/FurnitureFactory/FurnitureDataBaseImplement/FurnitureDataBaseImplement.csproj @@ -1,4 +1,4 @@ - + net6.0 @@ -6,8 +6,4 @@ enable - - - - diff --git a/FurnitureFactory/FurnitureFactory.sln b/FurnitureFactory/FurnitureFactory.sln index 6103753..b7762ee 100644 --- a/FurnitureFactory/FurnitureFactory.sln +++ b/FurnitureFactory/FurnitureFactory.sln @@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FurnitureFactoryDataModels" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FurnitureContracts", "FurnitureContracts\FurnitureContracts.csproj", "{E269E4B8-5EAD-4BB2-A8BA-44FE9D202FB6}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FurnitureDataBaseImplement", "FurnitureDataBaseImplement\FurnitureDataBaseImplement.csproj", "{1EFC8085-D7CE-40ED-B78D-5176861AB618}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -27,6 +29,10 @@ Global {E269E4B8-5EAD-4BB2-A8BA-44FE9D202FB6}.Debug|Any CPU.Build.0 = Debug|Any CPU {E269E4B8-5EAD-4BB2-A8BA-44FE9D202FB6}.Release|Any CPU.ActiveCfg = Release|Any CPU {E269E4B8-5EAD-4BB2-A8BA-44FE9D202FB6}.Release|Any CPU.Build.0 = Release|Any CPU + {1EFC8085-D7CE-40ED-B78D-5176861AB618}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1EFC8085-D7CE-40ED-B78D-5176861AB618}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1EFC8085-D7CE-40ED-B78D-5176861AB618}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1EFC8085-D7CE-40ED-B78D-5176861AB618}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE