Skip to content

Instantly share code, notes, and snippets.

@MrApproved
MrApproved / Genre.cs
Last active April 17, 2021 13:57
EFInMemoryDatabase
namespace EFInMemoryDatabase.Database.Tables
{
public class Genre
{
public int GenreId { get; set; }
public string Label { get; set; }
}
}
@MrApproved
MrApproved / ConfigService.js
Last active May 25, 2020 20:27
Basic Factory Pattern in Javascript
<!-- Config service -->
<script>
function ConfigService() {
this.Settings = [];
this.Settings["PrimaryColour"] = '#BFFCC6';
this.Settings["SecondaryColour"] = '#6EB5FF';
}
</script>