More backoffice fun
This commit is contained in:
18
PartSource.Backoffice/Services/TaskService.cs
Normal file
18
PartSource.Backoffice/Services/TaskService.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace PartSource.Backoffice.Services
|
||||
{
|
||||
public class TaskService
|
||||
{
|
||||
private readonly FtpService _ftpService;
|
||||
private readonly GZipService _gzipService;
|
||||
|
||||
public TaskService()
|
||||
{
|
||||
_ftpService = new FtpService();
|
||||
_gzipService = new GZipService();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user