Skip to content

Instantly share code, notes, and snippets.

View sugimomoto's full-sized avatar

Kazuya Sugimoto sugimomoto

View GitHub Profile
@sugimomoto
sugimomoto / CDataAPIServerAutocomplete.js
Last active May 26, 2020 05:39
Collabofloc コラボフローの申請フォームで SQL Server のマスタデータを参照する:CData API Server連携
(function () {
'use strict';
// オートコンプリートの設定フィールド
const AutocompleteSetting =
{
// 商品名:オートコンプリートの対象フィールド
InputName: 'fid12',
// 明細行数
@sugimomoto
sugimomoto / Issue.cs
Created May 10, 2020 02:30
BacklogAPIRequestSample
using System;
using System.Collections.Generic;
using System.Text;
namespace BacklogAPI
{
public class Issue
{
public int id { get; set; }
@sugimomoto
sugimomoto / BacklogAPIRequestSample.cs
Created May 10, 2020 02:30
BacklogAPIRequestSample.cs
using Newtonsoft.Json;
using RestSharp;
using System;
namespace BacklogAPI
{
class Program
{
static void Main(string[] args)
{
@sugimomoto
sugimomoto / boardSampleConsoleApp.cs
Created May 3, 2020 08:19
board API SampleConsoleApp
using Newtonsoft.Json;
using RestSharp;
using System;
namespace boardSampleConsoleApp
{
class Program
{
static void Main(string[] args)
{
@sugimomoto
sugimomoto / zaico.json
Created April 3, 2020 13:34
ZAICO API Postman Collection
{
"info": {
"_postman_id": "a49944d1-5a6c-4017-9e8b-0f8b09d48eb0",
"name": "ZAICO",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "在庫データ一覧取得",
"request": {
{
"text": "My added comments to this Tweet ---> https:\/\/t.co\/LinkToTweet",
"user": {
"screen_name": "TweetQuoter"
},
"quoted_status": {
"text": "original message",
"user": {
"screen_name": "OriginalTweeter"
},
@sugimomoto
sugimomoto / SqlKata.cs
Last active February 7, 2020 02:15
SqlKata by CData Kintone ADO.NET Provider
using System;
using SqlKata;
using SqlKata.Execution;
using SqlKata.Compilers;
using System.Data.SqlClient;
using System.Data.CData.Kintone;
namespace CData.SqlKata.CDataSampleProject
{
class Program
@sugimomoto
sugimomoto / SQLServerSample.cs
Last active February 7, 2020 01:47
CData.SqlKata.SQLServerSample
using System;
using SqlKata;
using SqlKata.Execution;
using SqlKata.Compilers;
using System.Data.SqlClient;
namespace CData.SqlKata.CDataSampleProject
{
class Program
{
@sugimomoto
sugimomoto / SqlKata.cs
Created February 5, 2020 08:36
SqlKata by CData Sansan ADO.NET Provider
using System;
using SqlKata.Compilers;
using SqlKata.Execution;
using System.Data.CData.Sansan;
namespace CData.SqlKata.SampleProject
{
class Program
{
static void Main(string[] args)