public void TestConsultLastEmployeID() { IDAOUsuarios daoUsuario = DatosTangerine.Fabrica.FabricaDAOSqlServer.crearDaoUsuario(); answer = daoUsuario.Agregar(elUsuario); int lastID = daoUsuario.ConsultLastEmployeID(); Assert.IsTrue(lastID > 0); }
/// <summary> /// Mètodo para ejecutar la logica del ComandoConsultarUltimoIDEmpleado /// </summary> /// <returns>Retorna el ID del ultimo empleado</returns> public override int Ejecutar() { try { int resultado; IDAOUsuarios LastEmployeID = FabricaDAOSqlServer.crearDaoUsuario(); resultado = LastEmployeID.ConsultLastEmployeID(); return(resultado); } catch (Exception ex) { Logger.EscribirError(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name, ex); throw new ExceptionM2Tangerine("DS-202", "Metodo no implementado", ex); } }