Healthcare Interoperability: Exploring the Potential of the FHIR NutritionOrder Resource

The Fast Healthcare Interoperability Resources (FHIR) NutritionOrder resource is an essential component of the FHIR standard, designed to facilitate a seamless exchange of nutrition-related information among healthcare systems and applications. In the ever-evolving landscape of modern healthcare, nutrition plays a pivotal role in promoting overall well-being and managing various medical conditions. The FHIR NutritionOrder resource aims to standardize the representation of nutrition-related orders or requests, ensuring clarity and consistency in the communication between healthcare providers, patients, and other stakeholders involved in the care process.

Introduction

At its core, the FHIR NutritionOrder resource encapsulates comprehensive and detailed information about a patient’s nutritional requirements and interventions. These may include dietary preferences, specific nutritional needs, restrictions, meal schedules, and any necessary supplements or modifications tailored to the patient’s unique health circumstances. By providing a structured and standardized format, FHIR enables healthcare systems to seamlessly share this information across different platforms and applications, promoting interoperability and enhancing the continuity of care for patients.

The NutritionOrder resource aligns with the broader goals of FHIR, emphasizing simplicity, flexibility, and adaptability. Healthcare institutions and software developers can implement this resource in their systems with ease, fostering a more efficient and integrated approach to nutrition management. This resource’s implementation empowers healthcare providers to streamline the process of prescribing, adjusting, and monitoring nutrition-related interventions, thereby promoting more effective and personalized patient care.

One of the key advantages of the FHIR NutritionOrder resource is its potential to support innovative applications and technologies aimed at improving patient outcomes. Whether in electronic health records (EHRs), mobile health apps, or telehealth platforms, the resource’s standardized structure ensures that vital nutrition-related data is accurately captured and shared across the healthcare ecosystem. This, in turn, can lead to better clinical decision-making, enhanced patient engagement, and increased adherence to prescribed nutrition plans.

FHIR NutritionOrder Resource
FHIR NutritionOrder Resource

Moreover, the FHIR NutritionOrder resource takes into account patient privacy and data security by adhering to industry-standard protocols. Patient confidentiality is maintained through the application of FHIR’s robust security mechanisms, assuring users that sensitive nutrition-related information remains protected from unauthorized access or breaches.

As healthcare continues to embrace digital transformation and interoperability, the FHIR NutritionOrder resource stands as a valuable asset in the pursuit of optimal patient care and well-coordinated nutrition interventions. Its standardized approach to nutrition-related orders and requests enhances communication, data exchange, and collaboration among healthcare professionals, ultimately fostering a more patient-centric and efficient healthcare landscape.

Structure of FHIR NutritionOrder Resource

Here is the structure of the FHIR NutritionOrder resource in JSON format along with an explanation of each element. Other format like XML and Turtle is also present, but for simplicity here we will take the example of JSON format. The complete structure details can be found here.

{
  "resourceType": "NutritionOrder",
  "id": "example-nutritionorder",
  "status": "active",
  "patient": {
    "reference": "Patient/example",
    "display": "John Doe"
  },
  "dateTime": "2023-07-27T10:15:00Z",
  "orderer": {
    "reference": "Practitioner/example",
    "display": "Dr. Jane Smith"
  },
  "oralDiet": {
    "type": [
      {
        "coding": {
          "system": "http://snomed.info/sct",
          "code": "226211001",
          "display": "Regular diet"
        }
      }
    ],
    "schedule": [
      {
        "repeat": {
          "frequency": 3,
          "period": 1,
          "periodUnit": "d"
        }
      }
    ],
    "nutrient": [
      {
        "modifier": {
          "coding": {
            "system": "http://snomed.info/sct",
            "code": "255644002",
            "display": "Energy intake"
          }
        },
        "amount": {
          "value": 2000,
          "unit": "calories",
          "system": "http://unitsofmeasure.org",
          "code": "cal"
        }
      },
      {
        "modifier": {
          "coding": {
            "system": "http://snomed.info/sct",
            "code": "258597000",
            "display": "Carbohydrate intake"
          }
        },
        "amount": {
          "value": 300,
          "unit": "grams",
          "system": "http://unitsofmeasure.org",
          "code": "g"
        }
      },
      {
        "modifier": {
          "coding": {
            "system": "http://snomed.info/sct",
            "code": "258618000",
            "display": "Protein intake"
          }
        },
        "amount": {
          "value": 60,
          "unit": "grams",
          "system": "http://unitsofmeasure.org",
          "code": "g"
        }
      }
    ],
    "texture": [
      {
        "modifier": {
          "coding": {
            "system": "http://snomed.info/sct",
            "code": "228055009",
            "display": "Regular texture"
          }
        }
      }
    ],
    "fluidConsistencyType": [
      {
        "coding": {
          "system": "http://snomed.info/sct",
          "code": "1040",
          "display": "Thin fluid consistency"
        }
      }
    ],
    "instruction": "Consume the diet as prescribed and follow dietary restrictions."
  },
  "supplement": [
    {
      "type": {
        "coding": {
          "system": "http://snomed.info/sct",
          "code": "35371003",
          "display": "Multivitamin supplement"
        }
      },
      "product": {
        "reference": "Medication/example",
        "display": "Multivitamin Tablet"
      },
      "schedule": [
        {
          "repeat": {
            "frequency": 1,
            "period": 1,
            "periodUnit": "d"
          }
        }
      ],
      "instruction": "Take one tablet daily with food."
    }
  ],
  "enteralFormula": [
    {
      "baseFormulaType": {
        "coding": {
          "system": "http://snomed.info/sct",
          "code": "433716001",
          "display": "Polymeric enteral nutrition"
        }
      },
      "baseFormulaProduct": {
        "reference": "Medication/example",
        "display": "Polymeric Formula"
      },
      "caloricDensity": {
        "value": 1.5,
        "unit": "calories/mL",
        "system": "http://unitsofmeasure.org",
        "code": "cal/mL"
      },
      "routeofAdministration": {
        "coding": {
          "system": "http://snomed.info/sct",
          "code": "255560000",
          "display": "Gastrostomy tube feeding"
        }
      },
      "rateQuantity": {
        "value": 60,
        "unit": "mL/h",
        "system": "http://unitsofmeasure.org",
        "code": "mL/h"
      },
      "maxVolumeToDeliver": {
        "value": 1000,
        "unit": "mL",
        "system": "http://unitsofmeasure.org",
        "code": "mL"
      },
      "administrationInstruction": "Start at a slow rate and gradually increase. Monitor for tolerance."
    }
  ]
}

Explanation of the JSON elements:

  • resourceType“: Indicates the type of resource, which is “NutritionOrder” in this case.
  • id“: A unique identifier for the specific NutritionOrder resource.
  • status“: Represents the status of the nutrition order, such as “active,” “suspended,” or “cancelled.”
  • patient“: Contains a reference to the patient for whom the nutrition order is intended, along with the patient’s display name.
  • dateTime“: The date and time when the NutritionOrder was created or issued.
  • orderer“: Contains a reference to the practitioner who issued the nutrition order, along with the practitioner’s display name.
  • oralDiet“: Contains details about the patient’s oral diet, including the type of diet (e.g., regular diet), schedule for meals, nutrient intake, texture modifications, and fluid consistency.
  • supplement“: Captures information about any supplements prescribed for the patient, including the type of supplement, product details, and instructions for use.
  • enteralFormula“: Contains details about the enteral formula prescribed for the patient, such as the type of formula, product details, caloric density, route of administration, rate of administration, and maximum volume to deliver.

Each element within “oralDiet,” “supplement,” and “enteralFormula” has its specific purpose in representing nutrition-related details, such as nutrient amounts, food texture, fluid consistency, supplement types, and administration instructions. Details for each of them are as follow:

1. Elements within “oralDiet”:

  • type“: Represents the type of diet the patient is prescribed, such as “Regular diet” or “Low sodium diet.” It is coded using a standardized terminology like SNOMED CT, providing a clear description of the diet’s characteristics.
  • schedule“: Specifies the schedule for administering the oral diet. It includes details like the frequency (e.g., 3 times a day) and period (e.g., every 1 day) for meals.
  • nutrient“: An array of different nutrients with associated modifiers and amounts. Each nutrient is represented by a “modifier” that describes the specific nutrient (e.g., “Energy intake,” “Carbohydrate intake,” “Protein intake”) and an “amount” that specifies the quantity in units like calories or grams.
  • texture“: Describes the texture modification of the food prescribed for the patient. For example, “Regular texture” may be recommended for patients with no specific swallowing difficulties.
  • fluidConsistencyType“: Represents the consistency of fluids prescribed for the patient. This element specifies the type of fluid consistency, such as “Thin fluid consistency.”
  • instruction“: Provides any specific instructions or guidelines for the patient to follow regarding their oral diet, such as how to consume meals or any dietary restrictions to be observed.

2. Elements within “supplement”:

  • type“: Represents the type of supplement prescribed for the patient, such as “Multivitamin supplement” or “Iron supplement.” It is coded using standardized terminology like SNOMED CT for clear identification.
  • product“: Contains a reference to the specific product or medication used for the supplement. The “display” provides a human-readable name of the product (e.g., “Multivitamin Tablet”).
  • schedule“: Specifies the schedule for administering the supplement. It includes details like the frequency (e.g., once daily) and period (e.g., every 1 day) for taking the supplement.
  • instruction“: Provides any specific instructions for the patient regarding the use or administration of the supplement, such as “Take one tablet daily with food.”

3. Elements within “enteralFormula”:

  • baseFormulaType“: Represents the type of enteral formula prescribed for the patient, such as “Polymeric enteral nutrition” or “Peptide-based enteral nutrition.” It is coded using standardized terminology like SNOMED CT.
  • baseFormulaProduct“: Contains a reference to the specific product or medication used for the enteral formula. The “display” provides a human-readable name of the product (e.g., “Polymeric Formula”).
  • caloricDensity“: Specifies the caloric density of the enteral formula in units like calories per milliliter (cal/mL).
  • routeofAdministration“: Represents the route of administration for the enteral formula, such as “Gastrostomy tube feeding.” It is coded using a standardized terminology like SNOMED CT.
  • rateQuantity“: Specifies the rate of administration for the enteral formula in units like milliliters per hour (mL/h).
  • maxVolumeToDeliver“: Defines the maximum volume of enteral formula to deliver, typically specified in milliliters (mL).
  • administrationInstruction“: Provides any specific instructions for the healthcare provider regarding the administration of the enteral formula, such as “Start at a slow rate and gradually increase. Monitor for tolerance.”

These elements within “oralDiet,” “supplement,” and “enteralFormula” allow for detailed representation of nutrition orders, covering various dietary aspects and requirements for patients. The use of standardized coding ensures that different healthcare systems can interpret and communicate this information consistently, promoting interoperability and effective nutrition management.

Commonly used fields in FHIR NutritionOrder Resource

The FHIR NutritionOrder resource provides a wide range of fields to capture detailed information about nutrition orders and interventions. The most commonly used fields in the FHIR NutritionOrder resource include:

  • status“: Indicates the status of the nutrition order (e.g., active, suspended, cancelled). This field is crucial for tracking the current state of the order.
  • patient“: Specifies the patient for whom the nutrition order is intended. It usually contains a reference to the patient’s record within the system.
  • dateTime“: Represents the date and time when the nutrition order was created or issued. This field helps establish the timeline of the order.
  • orderer“: Refers to the practitioner or healthcare professional who issued the nutrition order. It provides essential information about the prescriber.
  • oralDiet“: This element contains details about the patient’s oral diet, such as the type of diet, schedule for meals, nutrient intake, texture modifications, and fluid consistency.
  • supplement“: Captures information about any supplements prescribed for the patient, including the type of supplement, product details, and instructions for use.
  • enteralFormula“: Contains details about the enteral formula prescribed for the patient, such as the type of formula, product details, caloric density, route of administration, rate of administration, and maximum volume to deliver.
  • instruction“: Provides any specific instructions or guidelines for the patient to follow regarding the diet or supplement administration.
  • foodPreferenceModifier“: Represents food preferences or modifiers requested for the patient’s diet.
  • excludeFoodModifier“: Contains codes representing food items or components that need to be excluded from the patient’s diet.
  • allergyIntolerance“: Refers to any known allergies or intolerances the patient has, which might impact the nutrition order.

These commonly used fields cover the essential aspects of a nutrition order, encompassing patient details, prescriber information, dietary instructions, and any prescribed supplements or formulas. Implementers can use these fields to build interoperable systems for nutrition management, allowing seamless communication and collaboration between healthcare providers and other stakeholders involved in the patient’s care.

A use case where FHIR NutritionOrder Resource can be utilized

Use Case: Nutrition Order Management for a Diabetic Patient

Description: Managing the nutrition needs of diabetic patients is crucial to help them maintain stable blood glucose levels and prevent complications. In this use case, we will explore how the FHIR NutritionOrder resource can be utilized to support the efficient and standardized management of nutrition orders for diabetic patients.

Solution: The FHIR NutritionOrder resource can be employed to create, update, and share nutrition orders for diabetic patients seamlessly across healthcare systems and applications. Here’s how the resource can be utilized in this use case:

  1. Creating a Nutrition Order: When a diabetic patient visits a healthcare facility, a registered dietitian or a healthcare provider can create a new NutritionOrder resource using FHIR. The resource will contain specific dietary instructions tailored to the patient’s diabetes management needs. The order may include details on carbohydrate intake, recommended caloric intake, and any dietary restrictions to manage blood sugar levels effectively.
  2. Integration with Electronic Health Records (EHRs): The NutritionOrder resource can be seamlessly integrated with the patient’s electronic health record (EHR). This integration ensures that all healthcare providers involved in the patient’s care, including primary care physicians, endocrinologists, and nutritionists, have access to the same up-to-date nutrition order information. This fosters better coordination and avoids inconsistencies in dietary instructions.
  3. Monitoring and Updates: As the patient’s health condition evolves, the NutritionOrder resource can be easily updated to reflect changes in dietary requirements. For instance, if the patient’s blood glucose levels become unstable, the healthcare provider can adjust the carbohydrate intake or caloric recommendations directly within the resource.
  4. Interoperability and Telehealth: If the diabetic patient receives care from multiple healthcare providers across different facilities or engages in telehealth consultations, the NutritionOrder resource can be shared electronically. This interoperability ensures that all providers have access to the patient’s current nutrition plan, enabling them to offer consistent advice and support, regardless of the care setting.
  5. Patient Engagement and Self-Management: Patients can also benefit from the NutritionOrder resource, as it empowers them to access their nutrition plan through patient portals or mobile health applications. By having easy access to their dietary instructions, the patient can actively participate in their own diabetes management, making informed food choices and adhering to the prescribed nutrition plan.
  6. Real-time Alerts and Decision Support: FHIR-enabled systems can incorporate decision support tools to analyze the patient’s nutritional data, blood glucose levels, and other relevant information. The system can generate real-time alerts for healthcare providers if the patient’s nutrition plan needs adjustment based on the current health status.

In conclusion, the FHIR NutritionOrder resource provides a standardized and interoperable solution for managing nutrition orders for diabetic patients. By leveraging FHIR’s capabilities, healthcare providers can efficiently create, share, and update nutrition orders, fostering better patient outcomes and improving the overall management of diabetes care. The resource’s integration with electronic health records and decision support tools further enhances patient safety and care quality.

Here are a few general or interview questions related to the FHIR NutritionOrder resource, which aims to gauge your knowledge about the resource, its practical application, and your understanding of healthcare interoperability principles.

1. What is the FHIR NutritionOrder resource, and what purpose does it serve in the FHIR standard?

The FHIR NutritionOrder resource is a standardized data structure within the Fast Healthcare Interoperability Resources (FHIR) standard, designed to capture and represent nutrition-related orders or requests. Its primary purpose is to facilitate the seamless exchange of nutrition-related information among different healthcare systems and applications. By providing a consistent and well-defined format for nutrition orders, FHIR enables efficient communication between healthcare providers, patients, and other stakeholders involved in the care process. The resource ensures clarity and interoperability, promoting effective nutrition management and better patient outcomes.

2. How does the FHIR NutritionOrder resource contribute to promoting interoperability in healthcare systems?

The FHIR NutritionOrder resource promotes interoperability in healthcare systems through its standardized data representation. By using FHIR as a common standard, different healthcare systems and applications can efficiently exchange nutrition-related information without the need for complex custom interfaces. This standardization ensures that nutrition orders are consistently structured, allowing seamless data sharing and integration across various platforms. As a result, healthcare providers, caregivers, and patients can access and understand the nutrition orders regardless of the software or technology used, fostering better care coordination and improved patient outcomes

3. In a practical scenario, how would you use the FHIR NutritionOrder resource to create a nutrition plan for a patient with specific dietary requirements?

To create a nutrition plan using the FHIR NutritionOrder resource, a healthcare provider or registered dietitian would first identify the patient’s dietary requirements based on their medical condition and individual needs. The provider would then create a new instance of the NutritionOrder resource and populate the relevant fields with specific data.

This includes defining the patient, setting the status to “active,” specifying the type of diet (e.g., regular diet, low sodium diet), scheduling meals, and providing nutrient amounts (e.g., calories, carbohydrates, proteins). The resource can also include any prescribed supplements or enteral formulas with their administration details. Once the nutrition plan is complete, the resource can be stored in the patient’s electronic health record or shared with other care providers as needed.

4. How would you handle situations where a patient has multiple nutrition orders for different dietary requirements, and how can FHIR accommodate such cases?

When a patient has multiple nutrition orders for different dietary requirements, FHIR can accommodate these cases by allowing the creation of multiple instances of the NutritionOrder resource for the same patient. Each instance would represent a distinct nutrition order with its own set of dietary instructions, supplements, or enteral formulas. By using different resource identifiers, healthcare systems can distinguish between these nutrition orders and ensure they are appropriately managed and applied to the patient’s care.

5. Describe the process of integrating the FHIR NutritionOrder resource with an Electronic Health Record (EHR) system. What benefits does this integration provide?

Integrating the FHIR NutritionOrder resource with an EHR system involves establishing APIs (Application Programming Interfaces) that allow the EHR to send and receive NutritionOrder resources. The process typically requires adherence to FHIR’s RESTful principles for data exchange. When integrated, the EHR can access, display, and store nutrition orders as part of the patient’s health record. The benefits of this integration include improved care coordination, consistent nutrition information across the care team, enhanced patient safety by reducing errors, and better utilization of nutrition data for decision-making.

6. What are the advantages of using standardized code systems (e.g., SNOMED CT) in the “type” and “modifier” fields of the FHIR NutritionOrder resource?

Using standardized code systems like SNOMED CT in the “type” and “modifier” fields of the FHIR NutritionOrder resource offers several advantages. It ensures uniformity and clarity in the representation of nutrition-related concepts, making it easier for different healthcare systems to understand and interpret the data consistently. Standardized codes enable semantic interoperability, as all systems can use the same codes to convey specific dietary types, modifiers, or nutrient details. Additionally, standardized codes support international adoption, enabling nutrition orders to be easily shared and understood across various regions and healthcare organizations.

7. How does FHIR ensure patient privacy and data security when dealing with nutrition-related information in the NutritionOrder resource?

FHIR emphasizes patient privacy and data security through its implementation of industry-standard security protocols. Access to patient data, including nutrition-related information in the NutritionOrder resource, is governed by authentication and authorization mechanisms. These mechanisms ensure that only authorized individuals, such as healthcare providers involved in the patient’s care, can access and modify the data. Additionally, FHIR supports various privacy features, such as data masking and consent management, allowing patients to control who can view or share their nutrition orders. Compliance with regulations like the Health Insurance Portability and Accountability Act (HIPAA) further reinforces patient data protection.

8. In the context of telehealth and remote patient monitoring, how can the FHIR NutritionOrder resource be utilized to support patients with chronic conditions like diabetes or malnutrition?

In telehealth and remote patient monitoring scenarios, the FHIR NutritionOrder resource can play a vital role in supporting patients with chronic conditions. For example:

  • For a diabetic patient, a nutritionist can create a NutritionOrder resource with personalized dietary instructions and carbohydrate management details. The patient can access this information through a patient portal or mobile health app, making it easier to follow the prescribed nutrition plan from home.
  • In the case of malnutrition, the FHIR NutritionOrder resource can include specific nutrient requirements and supplements to address the patient’s nutritional needs. Remote monitoring devices can track the patient’s nutrient intake, and data from these devices can be integrated with the patient’s EHR, allowing healthcare providers to make informed adjustments to the nutrition plan based on real-time data.

Overall, the FHIR NutritionOrder resource facilitates remote collaboration between patients and healthcare providers, ensuring patients receive the appropriate nutrition support and enabling timely interventions for better management of chronic conditions.

9. Describe a use case where the FHIR NutritionOrder resource played a critical role in improving patient care and care coordination.

In a scenario where a patient with multiple chronic conditions, including diabetes and heart disease, is receiving care from multiple specialists, the FHIR NutritionOrder resource can significantly improve care coordination. With FHIR, the primary care physician, endocrinologist, cardiologist, and registered dietitian can create, share, and update the patient’s nutrition orders collaboratively. This ensures that all care providers are aware of the patient’s dietary requirements, enabling a cohesive approach to nutrition management that aligns with other treatment plans. The shared NutritionOrder resource fosters better communication, reduces duplication of efforts, and enhances the patient’s overall care experience.

10. What are the potential benefits of providing patients with access to their nutrition orders through patient portals or mobile health applications? How can FHIR facilitate patient engagement in this context?

Providing patients with access to their nutrition orders through patient portals or mobile health applications empowers them to actively participate in their healthcare journey. FHIR facilitates this patient engagement by offering standardized and easily interpretable data in the NutritionOrder resource. Patients can review their prescribed dietary instructions, supplement details, and any dietary restrictions conveniently through these platforms. This access enables patients to better understand their nutrition plans, follow dietary recommendations more effectively, and take ownership of their health by making informed choices.

11. Can you explain how the FHIR NutritionOrder resource aligns with other relevant FHIR resources, such as Patient, Practitioner, and AllergyIntolerance?

The FHIR NutritionOrder resource aligns with other FHIR resources to facilitate comprehensive and patient-centered care. For example:

  • The Patient resource is referenced in the NutritionOrder to specify the individual for whom the nutrition order is intended.
  • The Practitioner resource is referenced as the “orderer” in the NutritionOrder to identify the healthcare professional who issued the order.
  • The AllergyIntolerance resource can be linked to the NutritionOrder to indicate any known allergies or intolerances that may impact the patient’s dietary requirements. This ensures the nutrition order is tailored to the patient’s specific health needs.

By linking these resources, FHIR enables a holistic view of the patient’s health, allowing healthcare providers to make well-informed nutrition-related decisions while considering the patient’s medical history, allergies, and the prescriber’s identity.

Conclusion

In conclusion, the FHIR NutritionOrder resource plays a pivotal role in advancing the interoperability and efficiency of nutrition management within the healthcare ecosystem. By providing a standardized and structured representation of nutrition-related orders and interventions, FHIR empowers healthcare providers, patients, and caregivers with a unified language for exchanging crucial nutrition information. This standardization fosters seamless communication between disparate healthcare systems and applications, ensuring that accurate and up-to-date nutrition orders are accessible to all stakeholders involved in a patient’s care.

The FHIR NutritionOrder resource not only enhances care coordination and clinical decision-making but also promotes patient engagement and empowerment. With the ability to access their nutrition orders through patient portals or mobile health applications, patients gain a deeper understanding of their dietary requirements, enabling them to take an active role in managing their health. As the healthcare landscape continues to evolve, FHIR’s commitment to simplicity, flexibility, and security ensures that the NutritionOrder resource remains a valuable asset in promoting patient-centric, well-coordinated, and personalized nutrition interventions for improved health outcomes.

I hope you find this post helpful. Cheers!!!

[Further Readings: FHIR NutritionIntake Resource |   FHIR RiskAssessment Resource |  FHIR VisionPrescription Resource |  FHIR ServiceRequest Resource | FHIR DetectedIssue Resource |  FHIR ClinicalImpression Resource |  FHIR CareTeam Resource |  FHIR Goal Resource |  FHIR CarePlan Resource |  FHIR AdverseEvent Resource |  FHIR FamilyMemberHistory Resource |  FHIR Procedure Resource |  FHIR Condition Resource | FHIR InventoryItem Resource |  FHIR Substance Resource |  FHIR DeviceMetric Resource |  FHIR DeviceDefinition Resource |  FHIR Device Resource |  FHIR NutritionProduct Resource |  FHIR BiologicallyDerivedProduct Resource |  FHIR ObservationDefinition Resource |  FHIR Flag Resource |  FHIR AppointmentResponse Resource | FHIR Appointment Resource |   FHIR Encounter Resource |  FHIR EpisodeOfCare Resource |  FHIR SpecimenDefinition Resource |  FHIR Slot Resource |  FHIR Schedule Resource |  FHIR Endpoint Resource | FHIR HealthcareService Resource | Dependency Injection in WPF ]

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x