示例#1
0
 public static List<T_Payment_t> GetAllT_Payment_ts()
 {
     List<T_Payment_t> t_Payment_ts = new List<T_Payment_t>();
     SqlT_Payment_tProvider sqlT_Payment_tProvider = new SqlT_Payment_tProvider();
     t_Payment_ts = sqlT_Payment_tProvider.GetAllT_Payment_ts();
     return t_Payment_ts;
 }
示例#2
0
 public static T_Payment_t GetT_Payment_tByID(int id)
 {
     T_Payment_t t_Payment_t = new T_Payment_t();
     SqlT_Payment_tProvider sqlT_Payment_tProvider = new SqlT_Payment_tProvider();
     t_Payment_t = sqlT_Payment_tProvider.GetT_Payment_tByID(id);
     return t_Payment_t;
 }
示例#3
0
 public static bool UpdateT_Payment_t(T_Payment_t t_Payment_t)
 {
     SqlT_Payment_tProvider sqlT_Payment_tProvider = new SqlT_Payment_tProvider();
     return sqlT_Payment_tProvider.UpdateT_Payment_t(t_Payment_t);
 }
示例#4
0
 public static int InsertT_Payment_t(T_Payment_t t_Payment_t)
 {
     SqlT_Payment_tProvider sqlT_Payment_tProvider = new SqlT_Payment_tProvider();
     return sqlT_Payment_tProvider.InsertT_Payment_t(t_Payment_t);
 }
示例#5
0
 public static bool DeleteT_Payment_t(int t_Payment_tID)
 {
     SqlT_Payment_tProvider sqlT_Payment_tProvider = new SqlT_Payment_tProvider();
     return sqlT_Payment_tProvider.DeleteT_Payment_t(t_Payment_tID);
 }