Romanov_E.V._CourseWork_Vet.../VeterinaryClinicDataModels/Models/IMedicationModel.cs

16 lines
328 B
C#
Raw Normal View History

2023-04-07 14:13:18 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace VeterinaryClinicDataModels.Models
{
public interface IMedicationModel : IId
{
string MedicationName { get; }
double Cost { get; }
}
}