More ReSharper suggestions

This commit is contained in:
2015-11-02 21:21:57 -05:00
parent d8d7a9b5ba
commit 87c218de3c
32 changed files with 475 additions and 584 deletions

View File

@@ -5,7 +5,7 @@ namespace FeedCenter.Options
{
public class OptionsPanelBase : UserControl
{
protected FeedCenterEntities Database { get; set; }
protected FeedCenterEntities Database { get; private set; }
public virtual void LoadPanel(FeedCenterEntities database)
{
@@ -22,9 +22,6 @@ namespace FeedCenter.Options
throw new NotImplementedException();
}
public virtual string CategoryName
{
get { return null; }
}
public virtual string CategoryName => null;
}
}