public TabbedPageViewModel(ISermonService sermonService)
 {
     _sermonService = sermonService;
     if (Settings.LightMode)
     {
         TabBackgroundColor  = "#ffffff";
         TitleColor          = "#000000";
         PageBackgroundColor = "#ffffff";
     }
     else
     {
         TabBackgroundColor  = "#282828";
         TitleColor          = "#ffffff";
         PageBackgroundColor = "#343434";
     }
 }
Ejemplo n.º 2
0
 public SermonController(ISermonService sermonService)
 {
     this.sermonService = sermonService;
 }