diff --git a/SushiBar/SushiBarListImplement/DataListSingleton.cs b/SushiBar/SushiBarListImplement/DataListSingleton.cs index f398fdd..04beee0 100644 --- a/SushiBar/SushiBarListImplement/DataListSingleton.cs +++ b/SushiBar/SushiBarListImplement/DataListSingleton.cs @@ -1,6 +1,6 @@ -using SushiBarFileImplement.Models; +using SushiBarListImplement.Models; -namespace SushiBarFileImplement +namespace SushiBarListImplement { public class DataListSingleton { diff --git a/SushiBar/SushiBarListImplement/Implements/IngredientStorage.cs b/SushiBar/SushiBarListImplement/Implements/IngredientStorage.cs index 0ee51d8..92a771b 100644 --- a/SushiBar/SushiBarListImplement/Implements/IngredientStorage.cs +++ b/SushiBar/SushiBarListImplement/Implements/IngredientStorage.cs @@ -2,9 +2,9 @@ using SushiBarContracts.SearchModels; using SushiBarContracts.StoragesContracts; using SushiBarContracts.ViewModels; -using SushiBarFileImplement.Models; +using SushiBarListImplement.Models; -namespace SushiBarFileImplement.Implements +namespace SushiBarListImplement.Implements { public class IngredientStorage : IIngredientStorage { diff --git a/SushiBar/SushiBarListImplement/Implements/OrderStorage.cs b/SushiBar/SushiBarListImplement/Implements/OrderStorage.cs index dedc1f8..3254155 100644 --- a/SushiBar/SushiBarListImplement/Implements/OrderStorage.cs +++ b/SushiBar/SushiBarListImplement/Implements/OrderStorage.cs @@ -2,9 +2,9 @@ using SushiBarContracts.SearchModels; using SushiBarContracts.StoragesContracts; using SushiBarContracts.ViewModels; -using SushiBarFileImplement.Models; +using SushiBarListImplement.Models; -namespace SushiBarFileImplement.Implements +namespace SushiBarListImplement.Implements { public class OrderStorage : IOrderStorage { diff --git a/SushiBar/SushiBarListImplement/Implements/ShopStorage.cs b/SushiBar/SushiBarListImplement/Implements/ShopStorage.cs index e5fff04..f7c55c9 100644 --- a/SushiBar/SushiBarListImplement/Implements/ShopStorage.cs +++ b/SushiBar/SushiBarListImplement/Implements/ShopStorage.cs @@ -3,9 +3,9 @@ using SushiBarContracts.SearchModels; using SushiBarContracts.StoragesContracts; using SushiBarContracts.ViewModels; using SushiBarDataModels.Models; -using SushiBarFileImplement.Models; +using SushiBarListImplement.Models; -namespace SushiBarFileImplement.Implements +namespace SushiBarListImplement.Implements { public class ShopStorage : IShopStorage { diff --git a/SushiBar/SushiBarListImplement/Implements/SushiStorage.cs b/SushiBar/SushiBarListImplement/Implements/SushiStorage.cs index c65caf2..a57a5f8 100644 --- a/SushiBar/SushiBarListImplement/Implements/SushiStorage.cs +++ b/SushiBar/SushiBarListImplement/Implements/SushiStorage.cs @@ -3,9 +3,9 @@ using SushiBarContracts.SearchModels; using SushiBarContracts.StoragesContracts; using SushiBarContracts.ViewModels; using SushiBarDataModels.Models; -using SushiBarFileImplement.Models; +using SushiBarListImplement.Models; -namespace SushiBarFileImplement.Implements +namespace SushiBarListImplement.Implements { public class SushiStorage : ISushiStorage { diff --git a/SushiBar/SushiBarListImplement/Models/Ingredient.cs b/SushiBar/SushiBarListImplement/Models/Ingredient.cs index 01a2271..2f61296 100644 --- a/SushiBar/SushiBarListImplement/Models/Ingredient.cs +++ b/SushiBar/SushiBarListImplement/Models/Ingredient.cs @@ -2,7 +2,7 @@ using SushiBarContracts.ViewModels; using SushiBarDataModels.Models; -namespace SushiBarFileImplement.Models +namespace SushiBarListImplement.Models { public class Ingredient : IIngredientModel { diff --git a/SushiBar/SushiBarListImplement/Models/Order.cs b/SushiBar/SushiBarListImplement/Models/Order.cs index 81908bf..445b162 100644 --- a/SushiBar/SushiBarListImplement/Models/Order.cs +++ b/SushiBar/SushiBarListImplement/Models/Order.cs @@ -3,7 +3,7 @@ using SushiBarContracts.ViewModels; using SushiBarDataModels.Enums; using SushiBarDataModels.Models; -namespace SushiBarFileImplement.Models +namespace SushiBarListImplement.Models { public class Order : IOrderModel { diff --git a/SushiBar/SushiBarListImplement/Models/Shop.cs b/SushiBar/SushiBarListImplement/Models/Shop.cs index b27761d..f209f1d 100644 --- a/SushiBar/SushiBarListImplement/Models/Shop.cs +++ b/SushiBar/SushiBarListImplement/Models/Shop.cs @@ -2,7 +2,7 @@ using SushiBarContracts.ViewModels; using SushiBarDataModels.Models; -namespace SushiBarFileImplement.Models +namespace SushiBarListImplement.Models { public class Shop : IShopModel { diff --git a/SushiBar/SushiBarListImplement/Models/Sushi.cs b/SushiBar/SushiBarListImplement/Models/Sushi.cs index 1ae291c..3a589e8 100644 --- a/SushiBar/SushiBarListImplement/Models/Sushi.cs +++ b/SushiBar/SushiBarListImplement/Models/Sushi.cs @@ -2,7 +2,7 @@ using SushiBarContracts.ViewModels; using SushiBarDataModels.Models; -namespace SushiBarFileImplement.Models +namespace SushiBarListImplement.Models { public class Sushi : ISushiModel {