Beispiel #1
0
 public SolutionManager(ISolutionDal solutionDal, IFileCreateService fileCreateService, IProjectDal projectDal, IUnitDal unitDal)
 {
     _solutionDal       = solutionDal;
     _fileCreateService = fileCreateService;
     _projectDal        = projectDal;
     _unitDal           = unitDal;
 }
Beispiel #2
0
 public FileCreateManager(ICommandService commandService, ISolutionDal solutionDal, IProjectDal projectDal)
 {
     _commandService = commandService;
     _solutionDal    = solutionDal;
     _projectDal     = projectDal;
 }