コード例 #1
0
ファイル: admin_customer.php プロジェクト: noikiy/vis
 public function delete()
 {
     $customerIds = $this->input->post('customerIds');
     $customerService = new CustomerService();
     $customerService->delete($customerIds);
 }