RecycleBin now uses resources

RecycleBin bugs correction
This commit is contained in:
BONNEVILLE Geoffroy
2018-03-12 17:30:03 +01:00
parent 56129253d9
commit 4aefbcb8b9
17 changed files with 50 additions and 55 deletions

View File

@@ -19,7 +19,11 @@ namespace ModernKeePassApp.Test.Mock
public StorageFile DatabaseFile { get; set; }
public CompositeKey CompositeKey => _compositeKey;
public CompositeKey CompositeKey
{
get { return _compositeKey; }
set { _compositeKey = value; }
}
public PwUuid DataCipher { get; set; }
@@ -55,7 +59,7 @@ namespace ModernKeePassApp.Test.Mock
});
}
public void CreateRecycleBin()
public void CreateRecycleBin(string title)
{
throw new NotImplementedException();
}
@@ -84,10 +88,5 @@ namespace ModernKeePassApp.Test.Mock
{
throw new NotImplementedException();
}
public void UpdateCompositeKey(CompositeKey key)
{
throw new NotImplementedException();
}
}
}

View File

@@ -1,5 +1,4 @@
using System;
using ModernKeePass.Interfaces;
using ModernKeePass.Interfaces;
namespace ModernKeePassApp.Test.Mock
{