11 lines
No EOL
295 B
C#
11 lines
No EOL
295 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Master.Services.Maintenance
|
|
{
|
|
public interface IStatusManager
|
|
{
|
|
ServiceStatus GetServiceByName(string serviceName);
|
|
IReadOnlyList<ServiceStatus> GetAllServicesStatus();
|
|
void UpdateStatus(ServiceStatus service);
|
|
}
|
|
} |