public Users.Get.Result Get(String query) { var cm = new Users.Get.Command(); cm.query = query; return(this.Get(cm)); }
public Users.Get.Result Get(Int32?page, Int32?per_page, String query, Users.Get.Command.SortValues sort, Users.Get.Command.DirectionValues direction) { var cm = new Users.Get.Command(); cm.page = page; cm.per_page = per_page; cm.query = query; cm.sort = sort; cm.direction = direction; return(this.Get(cm)); }
public Users.Get.Result Get(Int32? page, Int32? per_page, String query, Users.Get.Command.SortValues sort, Users.Get.Command.DirectionValues direction) { var cm = new Users.Get.Command(); cm.page = page; cm.per_page = per_page; cm.query = query; cm.sort = sort; cm.direction = direction; return this.Get(cm); }
public Users.Get.Result Get(String query) { var cm = new Users.Get.Command(); cm.query = query; return this.Get(cm); }
public Users.Get.Result Get(Users.Get.Command command) { return(_ApiEndpoints._Client.GetResult <Users.Get.Command, Users.Get.Result>(command)); }