Пример #1
0
 // <summary>
 // ctor of CompilerLocalReference
 // </summary>
 internal CompilerLocalReference(string localCacheFile, ITaskFileService taskFileService)
 {
     _localCacheFile  = localCacheFile;
     _taskFileService = taskFileService;
 }
Пример #2
0
 // <summary>
 // ctor of CompilerState
 // </summary>
 internal CompilerState(string stateFilePath, ITaskFileService taskFileService)
 {
     _cacheInfoList   = new String[(int)CompilerStateType.MaxCount];
     _stateFilePath   = stateFilePath;
     _taskFileService = taskFileService;
 }
 // <summary>
 // ctor of CompilerLocalReference
 // </summary>
 internal CompilerLocalReference(string localCacheFile, ITaskFileService taskFileService)
 {
     _localCacheFile = localCacheFile;
     _taskFileService = taskFileService;
 }
Пример #4
0
 // <summary>
 // ctor of CompilerState
 // </summary>
 internal CompilerState(string stateFilePath, ITaskFileService taskFileService)
 {
     _cacheInfoList = new String[(int)CompilerStateType.MaxCount];
     _stateFilePath = stateFilePath;
     _taskFileService = taskFileService;
 }
Пример #5
0
 public CommentApiController(ITasksService TasksService, INotificationService NotificationService, ITaskCustomerService TaskCustomerService, ICustomerService CustomerService, ITaskFileService TaskFileService, ITaskCustomerFileService TaskCustomerFileService, ICommentService CommentService)
 {
     this._TasksService            = TasksService;
     this._NotificationService     = NotificationService;
     this._TaskCustomerService     = TaskCustomerService;
     this._CustomerService         = CustomerService;
     this._TaskFileService         = TaskFileService;
     this._TaskCustomerFileService = TaskCustomerFileService;
     this._CommentService          = CommentService;
 }
 public TaskCustomerFileApiController(ITasksService TasksService, ICustomerService CustomerService, ITaskFileService TaskFileService, ITaskCustomerFileService TaskCustomerFileService, ITaskCustomerService TaskCustomerService)
 {
     this._TasksService            = TasksService;
     this._CustomerService         = CustomerService;
     this._TaskFileService         = TaskFileService;
     this._TaskCustomerFileService = TaskCustomerFileService;
     this._TaskCustomerService     = TaskCustomerService;
 }