Inheritance: BaseDap
コード例 #1
0
 public Posts GetPOSTSByPOST_ID(Int32 POST_ID)
 {
     using (var dap = new PostsDap(this))
     {
         return dap.GetByPOST_ID(POST_ID);
     }
 }
コード例 #2
0
 public List<Posts> GetPOSTSByUSER_ID(Int32 USER_ID)
 {
     using (var dap = new PostsDap(this))
     {
         return dap.GetByUSER_ID(USER_ID);
     }
 }