Gismatullin.ISEbd-21.STO.Co.../ServiceStation/ServiceStationDataModels/IClientWorkModel.cs
2024-04-30 17:44:37 +03:00

15 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceStationDataModels
{
public interface IClientStorage
{
int ClientId { get; }
int WorkId { get; }
}
}