Added some error handling for add entry

This commit is contained in:
Fergal Moran
2018-02-12 23:56:45 +00:00
parent 5a678b7a4d
commit f0116d99f2
10 changed files with 7512 additions and 27846 deletions

View File

@@ -1,10 +1,9 @@
using System.Threading.Tasks;
namespace PodNoms.Api.Services.Processor
{
public interface IUrlProcessService
{
Task<bool> GetInformation(int entryId);
Task<bool> DownloadAudio(int entryId);
namespace PodNoms.Api.Services.Processor {
public interface IUrlProcessService {
Task<bool> CheckUrlValid (string url);
Task<bool> GetInformation (int entryId);
Task<bool> DownloadAudio (int entryId);
}
}