public string GetAllProducts() { MysqlHelper mysqlhelper = new MysqlHelper(); return(mysqlhelper.GetDetail("1")); }
public IHttpActionResult GetDetail(int id) { MysqlHelper mysqlhelper = new MysqlHelper(); return Ok(mysqlhelper.GetDetail(id.ToString())); }
public IHttpActionResult GetDetail(int id) { MysqlHelper mysqlhelper = new MysqlHelper(); return(Ok(mysqlhelper.GetDetail(id.ToString()))); }
public string GetAllProducts() { MysqlHelper mysqlhelper = new MysqlHelper(); return mysqlhelper.GetDetail("1"); }