19 lines
340 B
C#
19 lines
340 B
C#
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();
|
|
}
|
|
}
|
|
}
|