/// <summary>
 /// Ctor
 /// </summary>
 /// <param name="patientRepository">Patient repository with DB logic</param>
 /// <param name="propertyItemsRepository">Property items repository with DB logic</param>
 public PropertyItemsController(IPatientRepository patientRepository, IPropertyItemsRepository propertyItemsRepository)
 {
     this._patientRepository       = patientRepository;
     this._propertyItemsRepository = propertyItemsRepository;
 }
 public PropertyItemsService(IPropertyItemsRepository propertyItemsRepository)
 {
     _propertyItemsRepository = propertyItemsRepository;
 }