Exemplo n.º 1
0
 public SolutionManager(ISolutionDal solutionDal, IFileCreateService fileCreateService, IProjectDal projectDal, IUnitDal unitDal)
 {
     _solutionDal       = solutionDal;
     _fileCreateService = fileCreateService;
     _projectDal        = projectDal;
     _unitDal           = unitDal;
 }
Exemplo n.º 2
0
 public ProjectManager(IProjectDal projectDal, IFileCreateService fileCreateService)
 {
     _projectDal        = projectDal;
     _fileCreateService = fileCreateService;
 }