public DataTable getAllMartabe() { martabe mtb = new martabe(); DataTable dt = new DataTable(); dt.Columns.Add("id"); dt.Columns.Add("martabe"); var a = Enum.GetValues(typeof(martabe)); return(dt); }
public string getMartabeText(int idMartabe) { martabe mtb = new martabe(); return(((martabe)idMartabe).ToString()); }