This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dotnet add package Microsoft.EntityFrameworkCore.SqlServer | |
| dotnet add package Microsoft.EntityFrameworkCore.Tools | |
| dotnet ef migrations add NombreDeLaMigracion | |
| dotnet ef migrations script -o script.sql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .labelcompra{ | |
| display: flex; | |
| flex-direction: row; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .labelcompra h2{ | |
| text-align: center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function submitResult(e,id, objeto) { | |
| e.preventDefault(); | |
| Swal.fire({ | |
| title: 'Esta seguro?', | |
| text: "Ud no podra recuperar el registro de " + objeto + "!", | |
| icon: 'warning', | |
| showCancelButton: true, | |
| confirmButtonColor: '#3085d6', | |
| cancelButtonColor: '#d33', | |
| confirmButtonText: 'Si, eliminalo!' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.edu.ues.fia.eisi.app_proyecto01; | |
| import android.content.ContentValues; | |
| import android.content.Context; | |
| import android.database.Cursor; | |
| import android.database.SQLException; | |
| import android.database.sqlite.SQLiteDatabase; | |
| import android.database.sqlite.SQLiteOpenHelper; | |
| import java.util.Date; | |
| public class ControlBDActividades { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.edu.ues.fia.eisi.app_proyecto01; | |
| import java.util.Date; | |
| public class Actividad { | |
| private String idActividad; | |
| private String idMiembroUniversitario; | |
| private String nombreActividad; | |
| private String fechaReserva; | |
| private String desdeActividad; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .386 | |
| .model flat, stdcall | |
| option casemap :none ; case sensitive | |
| .nolist | |
| include \masm32\include\windows.inc | |
| include \masm32\include\masm32.inc | |
| include \masm32\include\user32.inc | |
| include \masm32\include\kernel32.inc | |
| .list | |
| includelib \masm32\lib\kernel32.lib |