Eliseev E.E. LabWork05_Hard #11

Closed
ElEgEv wants to merge 46 commits from LabWork05_Hard into LabWork05
Showing only changes of commit 807966a19d - Show all commits

View File

@ -0,0 +1,22 @@
using BlacksmithWorkshopDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlacksmithWorkshopDataModels.Models
{
//интерфес сущности "Магазин"
public interface IStoreModel
{
//название магазина
string StoreName { get; }
//адрес магазина
string Address { get; }
//дата открытия магазина
DateTime DateOpen { get; }
}
}