PIbd-22-Stroev-V.M.-Plumbin.../PlumbingRepair/PlumbingRepairDataModels/Models/IStoreModel.cs

17 lines
399 B
C#
Raw Normal View History

2024-05-05 00:19:00 +04:00
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)> Works { get; }
}
}