Пример #1
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;
 }