예제 #1
0
 public UploadController(
    IImageRepository imageRepository,
    IBinaryRepository binaryRepository,
    [Dependency("Image")] IMessageQueue messageQueue,
    FileUploaderAdapter adapter
 )
 {
    ActionInvoker = new ActionInvokers.ActionInvoker();
    _imageRepository = imageRepository;
    _binaryRepository = binaryRepository;
    _messageQueue = messageQueue;
    _adapter = adapter;
 }
예제 #2
0
 public UploadController(IImageRepository imageRepository, IBinaryRepository binaryRepository)
 {
    ActionInvoker = new ActionInvokers.ActionInvoker();
    _imageRepository = imageRepository;
    _binaryRepository = binaryRepository;
 }
예제 #3
0
 public UploadController()
 {
    ActionInvoker = new ActionInvokers.ActionInvoker();
 }
예제 #4
0
 public ImageController()
 {
    ActionInvoker = new ActionInvokers.ActionInvoker();
    _imageRepository = new SqlImageRepository();
    _binaryRepository = new S3BinaryRepository();
 }
예제 #5
0
 public AdminController()
 {
    ActionInvoker = new ActionInvokers.ActionInvoker();
    _imageRepository = new SqlImageRepository();
 }