22 lines
443 B
C#
22 lines
443 B
C#
using LawFirmContracts.Id;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LawFirmContracts.Models
|
|
{
|
|
public interface ICaseServiceModel : IId
|
|
{
|
|
/// <summary>
|
|
/// дела id
|
|
/// </summary>
|
|
int CaseId { get; }
|
|
/// <summary>
|
|
/// услуги id
|
|
/// </summary>
|
|
int ServiceId { get; }
|
|
}
|
|
}
|