Example #1
0
 public RequestFilesController(IMapper mapper, IRequestFileService requestFileService)
 {
     _mapper             = mapper;
     _requestFileService = requestFileService;
 }
 public RequestFileUploadController(IRequestFileService requestFileService)
     : base(requestFileService)
 {
     baseUrl = "RequestFileUpload";
 }