Add: DBService.js for client

This commit is contained in:
2019-07-11 11:51:53 +09:00
parent da44bcb17c
commit e21722526f
6 changed files with 97 additions and 16 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
class DBMethodContainer
{
protected $mysqli;
function __construct($mysqli)
{
$this->mysqli = $mysqli;
}
function __destruct()
{
}
}
?>