Package com.expositds.ars.domain.user

Examples of com.expositds.ars.domain.user.Mechanic


  }

  @Test
  public void getMechanicByPliRegNoTest() {
    try {
      Mechanic mechanic = mechanicService.getMechanicByPliRegNo("1003000323");
      log.info(mechanic);
    } catch (WrongMechanicPliRegNoException e) {
      e.printStackTrace();
    }
   
View Full Code Here


    log.info(mechanic);
  }

  @Test
  public void updateMechanicTest() {
    Mechanic mechanic = mechanicService.getMechanicById(new Long(6));
    mechanic.setName("����");
   
    log.info(mechanic);
  }
View Full Code Here

TOP

Related Classes of com.expositds.ars.domain.user.Mechanic

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.