mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
27 lines
793 B
C#
27 lines
793 B
C#
using MediatR;
|
|
using ModernKeePass.Application.Common.Interfaces;
|
|
using ModernKeePass.Domain.Exceptions;
|
|
|
|
namespace ModernKeePass.Application.Parameters.Commands.SetCipher
|
|
{
|
|
public class SetCipherCommand : IRequest
|
|
{
|
|
public string CipherId { get; set; }
|
|
|
|
public class SetCipherCommandHandler : IRequestHandler<SetCipherCommand>
|
|
{
|
|
private readonly IDatabaseProxy _database;
|
|
|
|
public SetCipherCommandHandler(IDatabaseProxy database)
|
|
{
|
|
_database = database;
|
|
}
|
|
|
|
public void Handle(SetCipherCommand message)
|
|
{
|
|
if (_database.IsOpen) _database.CipherId = message.CipherId;
|
|
else throw new DatabaseClosedException();
|
|
}
|
|
}
|
|
}
|
|
} |