14 lines
296 B
C#
14 lines
296 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Hyperbar.Desktop.Primary;
|
|
|
|
public class PrimaryCommandBuilder :
|
|
ICommandBuilder
|
|
{
|
|
public void Create(IServiceCollection services)
|
|
{
|
|
services.AddCommandTemplate<PrimaryCommandViewModel, PrimaryCommandView>();
|
|
}
|
|
}
|
|
|