Skip to content

Instantly share code, notes, and snippets.

@avdi
Forked from kberridge/task.cs
Created December 17, 2012 23:35
Show Gist options
  • Save avdi/4323473 to your computer and use it in GitHub Desktop.
Save avdi/4323473 to your computer and use it in GitHub Desktop.
public class Task : ActiveRecord
{
public string Name { get; set; }
public int AssignedTo_UserId { get; set; }
public DateTime DueOn { get; set; }
public Task()
{
DueOn = DateTime.Now.AddDays(1);
}
override void AfterInsert()
{
Email.Send(AssignedTo_UserId, "New Task", "You have been assigned a new task");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment