PIbd-22-Stroev-V.M.-Plumbin.../PlumbingRepair/PlumbingRepairDataModels/Models/IStoreModel.cs
2024-05-05 21:39:31 +04:00

18 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlumbingRepairDataModels.Models
{
public interface IStoreModel : IId
{
string StoreName { get; }
string StoreAdress { get; }
DateTime OpeningDate { get; }
Dictionary<int, (IWorkModel, int)> StoreWorks { get; }
public int WorkMaxCount { get; }
}
}