GetByUSER_ID() public method

public GetByUSER_ID ( Int32 USER_ID ) : List
USER_ID System.Int32
return List
Exemplo n.º 1
0
 public List<Posts> GetPOSTSByUSER_ID(Int32 USER_ID)
 {
     using (var dap = new PostsDap(this))
     {
         return dap.GetByUSER_ID(USER_ID);
     }
 }