More cleanup and fixes

This commit is contained in:
2023-04-12 11:35:19 -04:00
parent 64d0f770ca
commit a81cf5e69f
28 changed files with 472 additions and 473 deletions

View File

@@ -1,4 +1,5 @@
using ChrisKaczor.ApplicationUpdate;
using FeedCenter.Data;
using FeedCenter.FeedParsers;
using FeedCenter.Properties;
using FeedCenter.Xml;
@@ -118,9 +119,9 @@ namespace FeedCenter
private static HttpClient _httpClient;
public static Feed Create(FeedCenterEntities database)
public static Feed Create()
{
return new Feed { Id = Guid.NewGuid(), CategoryId = database.DefaultCategory.Id };
return new Feed { Id = Guid.NewGuid(), CategoryId = Database.Entities.DefaultCategory.Id };
}
#region Reading