コード例 #1
0
ファイル: AccountManager.cs プロジェクト: andrepires/mymoney
 public IOperationResult UpdateAccount(Guid oid, Account account)
 {
     //Validate here
     return AccountRepository.Update(oid, account);
 }
コード例 #2
0
ファイル: AccountManager.cs プロジェクト: andrepires/mymoney
 public IOperationResult CreateAccount(Account account)
 {
     //Validate here
     return AccountRepository.Create(account);
 }