コード例 #1
0
ファイル: DALSlider.cs プロジェクト: hamurcuabi/MotionSteel
 public static void Delete(int ID)
 {
     Functions.DeleteEnt(TableName, ID);
 }
コード例 #2
0
ファイル: DALSlider.cs プロジェクト: hamurcuabi/MotionSteel
 public static SLIDER GetBySort(int sort)
 {
     List <WHERE> where = new List <WHERE>();
     where.Add(new WHERE("SORT", "=", sort, null));
     return(Functions.ConvertToEntity <SLIDER>(Functions.GetByPropertyValue(TableName, where)));
 }
コード例 #3
0
ファイル: DALSlider.cs プロジェクト: hamurcuabi/MotionSteel
 public static void Insert(SLIDER item)
 {
     Functions.InsertEntity(TableName, item);
 }
コード例 #4
0
ファイル: DALSlider.cs プロジェクト: hamurcuabi/MotionSteel
 public static void Update(SLIDER item)
 {
     Functions.UpdateEntity(TableName, item);
 }
コード例 #5
0
ファイル: DALSlider.cs プロジェクト: hamurcuabi/MotionSteel
 public static List <SLIDER> GetAll()
 {
     List <WHERE> where = new List <WHERE>();
     return(Functions.GetByPropertyValue(TableName, where).ConvertToList <SLIDER>());
 }