Eliseev E.E. LabWork01_Hard #3

Closed
ElEgEv wants to merge 4 commits from LabWork01_Hard into LabWork01
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; }
}
}