More backoffice fun

This commit is contained in:
2020-11-04 19:44:18 -05:00
parent 2dc7a565f5
commit ec18472420
3 changed files with 49 additions and 2 deletions

View 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();
}
}
}