Added various

- Added DOC
- Added Patient
- Added Notifications
- Added Messages
- Various Refactoring
This commit is contained in:
2019-01-04 15:52:13 +01:00
parent e98b0ee6ce
commit 3751680fd3
23 changed files with 831 additions and 265 deletions

View File

@@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace SeniorAssistant.Models
{
@@ -12,8 +9,7 @@ namespace SeniorAssistant.Models
public class MenuItem : IMenuItem
{
public MenuItem(string text) : this(text, "#") { }
public MenuItem(string text, string href)
public MenuItem(string text, string href = "#")
{
Text = text;
HRef = href;