Ejemplo n.º 1
0
 public FileCreateHandler(HomeAssignmentsContext context,
                          ISolutionFileHandlerService solutionFileHandlerService,
                          IMapper mapper)
 {
     this.context = context;
     this.solutionFileHandlerService = solutionFileHandlerService;
     this.mapper = mapper;
 }
Ejemplo n.º 2
0
 public FileGetHandler(
     ISolutionFileHandlerService solutionFileHandlerService,
     HomeAssignmentsContext context,
     IIdentityService identityService)
 {
     this.solutionFileHandlerService = solutionFileHandlerService;
     this.context         = context;
     this.identityService = identityService;
 }