Namelist
This commit is contained in:
14
Apollon.Domain/Commands/ICreateNameListCommand.cs
Normal file
14
Apollon.Domain/Commands/ICreateNameListCommand.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Apollon.Domain.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Apollon.Domain.Commands
|
||||
{
|
||||
public interface ICreateNameListCommand
|
||||
{
|
||||
Task Execute(NameList nameList);
|
||||
}
|
||||
}
|
||||
13
Apollon.Domain/Commands/IDeleteNameListCommand.cs
Normal file
13
Apollon.Domain/Commands/IDeleteNameListCommand.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Apollon.Domain.Commands
|
||||
{
|
||||
public interface IDeleteNameListCommand
|
||||
{
|
||||
Task Execute(Guid id);
|
||||
}
|
||||
}
|
||||
14
Apollon.Domain/Commands/IUpdateNameListCommand.cs
Normal file
14
Apollon.Domain/Commands/IUpdateNameListCommand.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Apollon.Domain.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Apollon.Domain.Commands
|
||||
{
|
||||
public interface IUpdateNameListCommand
|
||||
{
|
||||
Task Exexute(NameList nameList);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user