20 lines
424 B
C#
20 lines
424 B
C#
using BeWo.Data.Access;
|
|
using BeWo.Data.Entities;
|
|
using BS.Shared.DataContracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.Status
|
|
{
|
|
public class GeneralStatusService : BaseStatusService
|
|
{
|
|
public GeneralStatusService() : base("Allgemein")
|
|
{
|
|
addWebSecretConfigCheck(WebSecretConfigSetting.AppStatusApiKey);
|
|
}
|
|
}
|
|
}
|