Skip to content

Instantly share code, notes, and snippets.

View sometowngeek's full-sized avatar

Robert sometowngeek

View GitHub Profile
@sometowngeek
sometowngeek / Point2.cs
Last active February 24, 2018 18:33
Point2.cs for someone on SO
using System;
namespace StackOverflow.Playground
{
public class Point2
{
// This is using the Xcoord as an entity outside of this class.
public static void Main(String[] args)
{
Xcoord xc = new Xcoord();
@sometowngeek
sometowngeek / Point.cs
Last active February 24, 2018 18:32
Point.cs for someone on SO
using System;
namespace StackOverflow.Playground
{
public class Point
{
public static void Main(String[] args)
{
Xcoord xc = new Xcoord();
@sometowngeek
sometowngeek / AttendanceList.cs
Last active February 24, 2018 18:32
CRUD for someone on SO
using System;
namespace StackOverflow.Playground
{
public class AttendanceList
{
public Guid CommunityEventAttendanceListId { get; set; }
public Guid CommunityEventId { get; set; }
}