main
1using Gorilla.Commons.Infrastructure.FileSystem;
2
3namespace momoney.service.infrastructure
4{
5 public interface IProjectTasks
6 {
7 void open(File file);
8 void copy_to(string path);
9 void close(string path);
10 }
11}