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
// Author: Benjamin Boyle | |
// Email: [email protected] | |
using System; | |
using System.Runtime.InteropServices; | |
namespace Utils | |
{ | |
///<summary> | |
/// Provides all c# console application shutdown scenarios in a single handler |
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 models; | |
import java.util.Date; | |
import javax.persistence.Column; | |
import javax.persistence.GeneratedValue; | |
import javax.persistence.Id; | |
import javax.persistence.MappedSuperclass; | |
import javax.persistence.PrePersist; | |
import javax.persistence.PreUpdate; |