замена названия проекта
This commit is contained in:
parent
3f5418a520
commit
641591bf4f
@ -1,6 +1,6 @@
|
||||
using AbstractSushiBarDataModels.Models;
|
||||
using SushiBarDataModels.Models;
|
||||
|
||||
namespace AbstractSushiBarContracts.BindingModels
|
||||
namespace SushiBarContracts.BindingModels
|
||||
{
|
||||
public class ComponentBindingModel : IComponentModel
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
using AbstractSushiBarDataModels.Enums;
|
||||
using AbstractSushiBarDataModels.Models;
|
||||
using SushiBarDataModels.Enums;
|
||||
using SushiBarDataModels.Models;
|
||||
|
||||
namespace AbstractSushiBarContracts.BindingModels
|
||||
namespace SushiBarContracts.BindingModels
|
||||
{
|
||||
public class OrderBindingModel : IOrderModel
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
using AbstractSushiBarDataModels.Models;
|
||||
using SushiBarDataModels.Models;
|
||||
|
||||
namespace AbstractSushiBarContracts.BindingModels
|
||||
namespace SushiBarContracts.BindingModels
|
||||
{
|
||||
public class ProductBindingModel : IProductModel
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
using AbstractSushiBarContracts.BindingModels;
|
||||
using AbstractSushiBarContracts.SearchModels;
|
||||
using AbstractSushiBarContracts.ViewModels;
|
||||
using SushiBarContracts.BindingModels;
|
||||
using SushiBarContracts.SearchModels;
|
||||
using SushiBarContracts.ViewModels;
|
||||
|
||||
namespace AbstractSushiBarContracts.BusinessLogicsContracts
|
||||
namespace SushiBarContracts.BusinessLogicsContracts
|
||||
{
|
||||
public interface IComponentLogic
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
using AbstractSushiBarContracts.BindingModels;
|
||||
using AbstractSushiBarContracts.SearchModels;
|
||||
using AbstractSushiBarContracts.ViewModels;
|
||||
using SushiBarContracts.BindingModels;
|
||||
using SushiBarContracts.SearchModels;
|
||||
using SushiBarContracts.ViewModels;
|
||||
|
||||
namespace AbstractSushiBarContracts.BusinessLogicsContracts
|
||||
namespace SushiBarContracts.BusinessLogicsContracts
|
||||
{
|
||||
public interface IOrderLogic
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
using AbstractSushiBarContracts.BindingModels;
|
||||
using AbstractSushiBarContracts.SearchModels;
|
||||
using AbstractSushiBarContracts.ViewModels;
|
||||
using SushiBarContracts.BindingModels;
|
||||
using SushiBarContracts.SearchModels;
|
||||
using SushiBarContracts.ViewModels;
|
||||
|
||||
namespace AbstractSushiBarContracts.BusinessLogicsContracts
|
||||
namespace SushiBarContracts.BusinessLogicsContracts
|
||||
{
|
||||
public interface IProductLogic
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace AbstractSushiBarContracts.SearchModels
|
||||
namespace SushiBarContracts.SearchModels
|
||||
{
|
||||
public class ComponentSearchModel
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace AbstractSushiBarContracts.SearchModels
|
||||
namespace SushiBarContracts.SearchModels
|
||||
{
|
||||
public class OrderSearchModel
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace AbstractSushiBarContracts.SearchModels
|
||||
namespace SushiBarContracts.SearchModels
|
||||
{
|
||||
public class ProductSearchModel
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
using AbstractSushiBarContracts.BindingModels;
|
||||
using AbstractSushiBarContracts.SearchModels;
|
||||
using AbstractSushiBarContracts.ViewModels;
|
||||
using SushiBarContracts.BindingModels;
|
||||
using SushiBarContracts.SearchModels;
|
||||
using SushiBarContracts.ViewModels;
|
||||
|
||||
namespace AbstractSushiBarContracts.StoragesContracts
|
||||
namespace SushiBarContracts.StoragesContracts
|
||||
{
|
||||
public interface IComponentStorage
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
using AbstractSushiBarContracts.BindingModels;
|
||||
using AbstractSushiBarContracts.SearchModels;
|
||||
using AbstractSushiBarContracts.ViewModels;
|
||||
using SushiBarContracts.BindingModels;
|
||||
using SushiBarContracts.SearchModels;
|
||||
using SushiBarContracts.ViewModels;
|
||||
|
||||
namespace AbstractSushiBarContracts.StoragesContracts
|
||||
namespace SushiBarContracts.StoragesContracts
|
||||
{
|
||||
public interface IOrderStorage
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
using AbstractSushiBarContracts.BindingModels;
|
||||
using AbstractSushiBarContracts.SearchModels;
|
||||
using AbstractSushiBarContracts.ViewModels;
|
||||
using SushiBarContracts.BindingModels;
|
||||
using SushiBarContracts.SearchModels;
|
||||
using SushiBarContracts.ViewModels;
|
||||
|
||||
namespace AbstractSushiBarContracts.StoragesContracts
|
||||
namespace SushiBarContracts.StoragesContracts
|
||||
{
|
||||
public interface IProductStorage
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
using AbstractSushiBarDataModels.Models;
|
||||
using SushiBarDataModels.Models;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace AbstractSushiBarContracts.ViewModels
|
||||
namespace SushiBarContracts.ViewModels
|
||||
{
|
||||
public class ComponentViewModel : IComponentModel
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
using AbstractSushiBarDataModels.Enums;
|
||||
using AbstractSushiBarDataModels.Models;
|
||||
using SushiBarDataModels.Enums;
|
||||
using SushiBarDataModels.Models;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace AbstractSushiBarContracts.ViewModels
|
||||
namespace SushiBarContracts.ViewModels
|
||||
{
|
||||
public class OrderViewModel : IOrderModel
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
using AbstractSushiBarDataModels.Models;
|
||||
using SushiBarDataModels.Models;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace AbstractSushiBarContracts.ViewModels
|
||||
namespace SushiBarContracts.ViewModels
|
||||
{
|
||||
public class ProductViewModel : IProductModel
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace AbstractSushiBarDataModels.Enums
|
||||
namespace SushiBarDataModels.Enums
|
||||
{
|
||||
public enum OrderStatus
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace AbstractSushiBarDataModels
|
||||
namespace SushiBarDataModels
|
||||
{
|
||||
public interface IId
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace AbstractSushiBarDataModels.Models
|
||||
namespace SushiBarDataModels.Models
|
||||
{
|
||||
public interface IComponentModel : IId
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
using AbstractSushiBarDataModels.Enums;
|
||||
using SushiBarDataModels.Enums;
|
||||
|
||||
namespace AbstractSushiBarDataModels.Models
|
||||
namespace SushiBarDataModels.Models
|
||||
{
|
||||
public interface IOrderModel : IId
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
namespace AbstractSushiBarDataModels.Models
|
||||
namespace SushiBarDataModels.Models
|
||||
{
|
||||
public interface IProductModel : IId
|
||||
{
|
||||
|
@ -5,9 +5,9 @@ VisualStudioVersion = 17.7.34031.279
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBar", "SushiBar\SushiBar.csproj", "{B9AC543F-20EE-47B1-9BC4-3F5DADAD931C}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AbstractSushiBarDataModels", "AbstractSushiBarDataModels\AbstractSushiBarDataModels.csproj", "{6F64D0ED-EAFC-495F-AFAC-FFC9CD4C53BA}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarDataModels", "AbstractSushiBarDataModels\SushiBarDataModels.csproj", "{6F64D0ED-EAFC-495F-AFAC-FFC9CD4C53BA}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AbstractSushiBarContracts", "AbstractSushiBarContracts\AbstractSushiBarContracts.csproj", "{E02D432A-1BC9-4C65-B8D3-57EC53336DD3}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SushiBarContracts", "AbstractSushiBarContracts\SushiBarContracts.csproj", "{E02D432A-1BC9-4C65-B8D3-57EC53336DD3}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
Loading…
Reference in New Issue
Block a user