LocalPicture -model added
This commit is contained in:
@ -12,6 +12,12 @@ namespace ImageHandlingLibrary
|
||||
{
|
||||
public class Filing : IFiling
|
||||
{
|
||||
private readonly IRegistring _registring;
|
||||
|
||||
public Filing(IRegistring registring)
|
||||
{
|
||||
_registring = registring;
|
||||
}
|
||||
public BitmapImage ConvertFromDrawImage(System.Drawing.Image _image)
|
||||
{
|
||||
using (var ms = new MemoryStream())
|
||||
@ -29,5 +35,11 @@ namespace ImageHandlingLibrary
|
||||
return bitmapImage;
|
||||
}
|
||||
}
|
||||
|
||||
public string ShowText()
|
||||
{
|
||||
var output = _registring.GetRegistryRootDir();
|
||||
return $"Root directory value is {output} OBS Test!!";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user