25 lines
646 B
C#
25 lines
646 B
C#
using DataLayer;
|
|
using System;
|
|
|
|
namespace LibationWinForms.BookLiberation
|
|
{
|
|
class AudioConvertForm : AudioDecodeBaseForm
|
|
{
|
|
#region AudioDecodeBaseForm overrides
|
|
public override string DecodeActionName => "Converting";
|
|
#endregion
|
|
|
|
#region IProcessable event handler overrides
|
|
public override void OnBegin(object sender, LibraryBook libraryBook)
|
|
{
|
|
LogMe.Info($"Convert Step, Begin: {libraryBook.Book}");
|
|
|
|
base.OnBegin(sender, libraryBook);
|
|
}
|
|
public override void OnCompleted(object sender, LibraryBook libraryBook)
|
|
=> LogMe.Info($"Convert Step, Completed: {libraryBook.Book}{Environment.NewLine}");
|
|
|
|
#endregion
|
|
}
|
|
}
|