public DocumentsController(IFileAllocationService fileAllocationService)
 {
     _fileAllocationService = fileAllocationService;
 }
 public FileAllocationController(IMapper mapper, IFileAllocationService fileAllocationService)
 {
     _fileAllocationService = fileAllocationService;
     _mapper = mapper;
 }