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