Ejemplo n.º 1
0
 ///<summary>Determines if a SheetTypeEnum is a Dashboard.</summary>
 public static bool IsDashboardType(SheetTypeEnum sheetType)
 {
     if (sheetType.In(SheetTypeEnum.PatientDashboard, SheetTypeEnum.PatientDashboardWidget))
     {
         return(true);
     }
     return(false);
 }
Ejemplo n.º 2
0
 ///<summary>SheetType must either by PatientForm of MedicalHistory.</summary>
 public static bool IsWebFormAllowed(SheetTypeEnum sheetType)
 {
     return(sheetType.In(SheetTypeEnum.PatientForm, SheetTypeEnum.MedicalHistory));
 }