updated namespaces, improved page management,

This commit is contained in:
Shaun Walker
2019-09-14 15:31:12 -04:00
parent 2a691dbceb
commit 7d5e35c637
73 changed files with 608 additions and 309 deletions

View File

@ -1,5 +1,6 @@
@using Oqtane.Modules
@using Oqtane.Client.Modules.Weather.Services
@using Oqtane.Modules.Weather.Services
@namespace Oqtane.Modules.Weather
@inherits ModuleBase
@if (forecasts == null)

View File

@ -1,6 +1,6 @@
using System;
namespace Oqtane.Client.Modules.Weather
namespace Oqtane.Modules.Weather
{
public class WeatherForecast
{

View File

@ -1,7 +1,7 @@
using Oqtane.Modules;
using System.Collections.Generic;
namespace Oqtane.Client.Modules.Weather
namespace Oqtane.Modules.Weather
{
public class Module : IModule
{

View File

@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
namespace Oqtane.Client.Modules.Weather.Services
namespace Oqtane.Modules.Weather.Services
{
public interface IWeatherForecastService
{

View File

@ -3,7 +3,7 @@ using System;
using System.Linq;
using System.Threading.Tasks;
namespace Oqtane.Client.Modules.Weather.Services
namespace Oqtane.Modules.Weather.Services
{
public class WeatherForecastService : IWeatherForecastService
{