예제 #1
0
 public int Update(Model.UserPay model, string where)
 {
     return(dal.Update(model, where));
 }
예제 #2
0
파일: UserPay.cs 프로젝트: gonziy/readplan2
 public int Update(Model.UserPay model, string where)
 {
     return(DbHelperSQL.Update <Model.UserPay>(databaseprefix + "user_pay", model, "id", where));
 }
예제 #3
0
 public int Add(Model.UserPay model)
 {
     return(dal.Add(model));
 }
예제 #4
0
파일: UserPay.cs 프로젝트: gonziy/readplan2
        public int Add(Model.UserPay model)
        {
            int id = 0;

            return(DbHelperSQL.Insert(databaseprefix + "user_pay", model, out id));
        }