예제 #1
0
 public TransactionResult update(CombustibleVo combustible_vo)
 {
     return(combustible_repository.update(CombustibleAdapter.voToObject(combustible_vo)));
 }
예제 #2
0
        public TransactionResult create(CombustibleVo combustible_vo)
        {
            Combustible combustible = CombustibleAdapter.voToObject(combustible_vo);

            return(combustible_repository.create(combustible));
        }