Rogashova_E.A._CourseWork_H.../HospitalDataModels/Models/IProceduresModel.cs

15 lines
282 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalDataModels.Models
{
public interface IProceduresModel: IId
{
string ProcedureName { get; }
string Type { get; }
}
}