コード例 #1
0
        public void Insert(string GroupName, int Argb)
        {
            var item = new SysPrintColor();

            item.GroupName = GroupName;

            item.Argb = Argb;


            item.Save(UserName);
        }
コード例 #2
0
        public void Update(int Id, string GroupName, int Argb)
        {
            var item = new SysPrintColor();

            item.MarkOld();
            item.IsLoaded = true;

            item.Id = Id;

            item.GroupName = GroupName;

            item.Argb = Argb;

            item.Save(UserName);
        }
コード例 #3
0
 public bool Destroy(object Id)
 {
     return(SysPrintColor.Destroy(Id) == 1);
 }
コード例 #4
0
 public bool Delete(object Id)
 {
     return(SysPrintColor.Delete(Id) == 1);
 }