コード例 #1
0
 protected ControllerBase(IStringContentService stringContentService, IOptions <PostgRestConfig> options)
 {
     this.StringContentService = stringContentService;
     this.options     = options;
     query            = null;
     body             = null;
     info             = null;
     stringParameters = new List <string>();
     npngParameters   = new List <NpgsqlParameter>();
 }
コード例 #2
0
 public DeleteController(IStringContentService stringContentService, IOptions <PostgRestConfig> options) : base(stringContentService, options)
 {
 }