Exemplo n.º 1
0
 public async Task <Tuple <List <LandingPageSearchResult>, int> > SearchAsync(LandingPageRequestModel req)
 {
     return(await(_dbContext as Model.PunnelContext).msp_LandingPage_SearchAsync(req));
 }
Exemplo n.º 2
0
 public List <LandingPageSearchResult> Search(LandingPageRequestModel req, out int total)
 {
     total = 0;
     return((_dbContext as Model.PunnelContext).msp_LandingPage_Search(req, out total));
 }