public void StartCompress(JobType jobType)
 {
     _threading.ThreadStart(_factory.Create().CompressAction(jobType));
 }
Esempio n. 2
0
 public void WriteFile(string fileName)
 {
     _threading.ThreadStart(_uow.WriteFileAction(fileName));
 }
Esempio n. 3
0
 public void ReadFile(string filePath, JobType jobType)
 {
     _threading.ThreadStart(_uow.ReadFileAction(filePath, jobType));
 }