Guest User

Untitled

a guest
Oct 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. [Route("")]
  2. public virtual object GetWithoutPreviuous1([FromUri] bool? withoutPrevious)
  3. {
  4. return null;
  5. }
  6. [Route("")]
  7. public virtual object GetWithCompanyIdAndWithoutPrevious([FromUri] List<long?> companyId, [FromUri] bool? withoutPrevious)
  8. {
  9. return GetReport(DateTime.Today, companyId, false, withoutPrevious);
  10. }
  11.  
  12. /monitorWells?param1=1&param2=2&param3=3&param4=4
  13.  
  14. monitorwells/param1/param2/param3/param4
Add Comment
Please, Sign In to add comment