GetByPOST_ID() public method

public GetByPOST_ID ( Int32 POST_ID ) : Posts
POST_ID System.Int32
return TechTalks.DomainObjects.Posts
Exemplo n.º 1
0
 public Posts GetPOSTSByPOST_ID(Int32 POST_ID)
 {
     using (var dap = new PostsDap(this))
     {
         return dap.GetByPOST_ID(POST_ID);
     }
 }