コード例 #1
0
ファイル: LogBUL.cs プロジェクト: noragalvin/ATM_manager
 public void StoreLog(int atm_id, string cardNumber, string created_at, int amount = 0, int type = 1, string description = null, string toCard = null)
 {
     logDAL.StoreLog(atm_id, cardNumber, created_at, amount, type, description, toCard);
 }