示例#1
0
            public Users.Get.Result Get(String query)
            {
                var cm = new Users.Get.Command();

                cm.query = query;
                return(this.Get(cm));
            }
示例#2
0
            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));
            }
示例#3
0
 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);
 }
示例#4
0
 public Users.Get.Result Get(String query)
 {
     var cm = new Users.Get.Command();
     cm.query = query;
     return this.Get(cm);
 }
示例#5
0
 public Users.Get.Result Get(Users.Get.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Users.Get.Command, Users.Get.Result>(command));
 }