You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TBCodeServiceImpl.java 335B

123456789101112131415
  1. package vn.azteam.tpf.service.impl;
  2. import org.springframework.stereotype.Service;
  3. import org.springframework.transaction.annotation.Transactional;
  4. import vn.azteam.tpf.service.TBCodeService;
  5. /**
  6. * Service Implementation for managing TBCode.
  7. */
  8. @Service
  9. @Transactional
  10. public class TBCodeServiceImpl implements TBCodeService {
  11. }