Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
12345678910111213 |
- using System;
-
- namespace Rdh.ElectronicMedicineKit.Models
- {
- public class OperationDrug : RootEntity
- {
- public virtual Operation Operation { get; set; }
- public Guid OperationId { get; set; }
-
- public virtual Drug Drug { get; set; }
- public Guid DrugId { get; set; }
- }
- }
|