18 lines
446 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; }
2024-05-05 21:39:31 +04:00
Dictionary<int, (IWorkModel, int)> StoreWorks { get; }
public int WorkMaxCount { get; }
2024-05-05 00:19:00 +04:00
}
}