convert TODO to issue #143

This commit is contained in:
Collin M. Barrett 2017-10-26 11:27:59 -05:00
parent 32b01face5
commit c96010c1c6
2 changed files with 0 additions and 6 deletions

View file

@ -14,10 +14,6 @@ public ListsController(IFilterListService filterListService)
this.filterListService = filterListService;
}
/// <summary>
/// Get Lists
/// </summary>
/// <returns>All FilterLists</returns>
[HttpGet]
public IActionResult Get()
{

View file

@ -16,8 +16,6 @@ public abstract class BaseEntity : IBaseEntity
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[JsonIgnore]
//TODO: Implement http://stackoverflow.com/a/38102266/2343739 so DefaultValue takes effect in db automatically
//For now, manually execute on new tables: InitializeNewTableBaseEntityDefaults.sql
[DefaultValue("CURRENT_TIMESTAMP")]
public DateTime AddedDateUtc { get; set; }