Agliullov D. A. Lab Work 1 Hard #3
12
ConfectioneryContracts/BindingModels/ShopBindingModel.cs
Normal file
12
ConfectioneryContracts/BindingModels/ShopBindingModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ConfectioneryContracts.BindingModels
|
||||
{
|
||||
internal interface ShopBindingModel
|
||||
{
|
||||
}
|
||||
}
|
9
ConfectioneryContracts/SearchModels/ShopSearchModel.cs
Normal file
9
ConfectioneryContracts/SearchModels/ShopSearchModel.cs
Normal file
@ -0,0 +1,9 @@
|
||||
|
||||
namespace ConfectioneryContracts.SearchModels
|
||||
{
|
||||
public class ShopSearchModel
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
}
|
||||
}
|
12
ConfectioneryContracts/StoragesContract/IShopStorage.cs
Normal file
12
ConfectioneryContracts/StoragesContract/IShopStorage.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ConfectioneryContracts.StoragesContract
|
||||
{
|
||||
internal interface IShopStorage
|
||||
{
|
||||
}
|
||||
}
|
12
ConfectioneryContracts/ViewModels/ShopViewModel.cs
Normal file
12
ConfectioneryContracts/ViewModels/ShopViewModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ConfectioneryContracts.ViewModels
|
||||
{
|
||||
internal class ShopViewModel
|
||||
{
|
||||
}
|
||||
}
|
12
ConfectioneryDataModels/IShopModel.cs
Normal file
12
ConfectioneryDataModels/IShopModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ConfectioneryDataModels
|
||||
{
|
||||
internal interface IShopModel
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user