예제 #1
0
파일: ECmsType.cs 프로젝트: wl147/mycms
 public static int GetDBType(ECmsType type)
 {
     if (type == ECmsType.News)
     {
         return(1);
     }
     else if (type == ECmsType.Study)
     {
         return(2);
     }
     else if (type == ECmsType.Partake)
     {
         return(3);
     }
     else if (type == ECmsType.Branch)
     {
         return(4);
     }
     else
     {
         throw new Exception();
     }
 }
예제 #2
0
파일: ECmsType.cs 프로젝트: wl147/mycms
 public static string GetValue(ECmsType type)
 {
     if (type == ECmsType.News)
     {
         return("News");
     }
     else if (type == ECmsType.Study)
     {
         return("Study");
     }
     else if (type == ECmsType.Partake)
     {
         return("Partake");
     }
     else if (type == ECmsType.Branch)
     {
         return("Branch");
     }
     else
     {
         throw new Exception();
     }
 }
예제 #3
0
파일: ECmsType.cs 프로젝트: wl147/mycms
 public static string GetText(ECmsType type)
 {
     if (type == ECmsType.News)
     {
         return("新闻管理");
     }
     else if (type == ECmsType.Study)
     {
         return("我要学习");
     }
     else if (type == ECmsType.Partake)
     {
         return("我要参与");
     }
     else if (type == ECmsType.Branch)
     {
         return("支部管理");
     }
     else
     {
         throw new Exception();
     }
 }
예제 #4
0
 private ListItem GetListItem(ECmsType type)
 {
     return(new ListItem(ECmsTypeUtils.GetText(type), ECmsTypeUtils.GetDBType(type).ToString()));
 }