Example #1
0
 public List <string> MultibagStr(ReportDefMultScope scope)
 {
     if (MultibagsStrRaw != null)
     {
         if (MultibagsStrRaw.ContainsKey(scope))
         {
             return(MultibagsStrRaw[scope]);
         }
     }
     return(new List <string> {
     });
 }
Example #2
0
 public List <int> Multibag(ReportDefMultScope scope)
 {
     if (MultibagsRaw != null)
     {
         if (MultibagsRaw.ContainsKey(scope))
         {
             return(MultibagsRaw[scope]);
         }
     }
     return(new List <int> {
     });
 }