Beispiel #1
0
 public CreateController(IBoxPacker packer, IBoxStorage attic, IApiRequest dropbox)
 {
     _packer = packer;
     _attic = attic;
     _dropbox = dropbox;
     _mimeTypes = new List<string> { "image/jpeg", "image/png" };
     _client = new HttpClient();
     //ViewBag.IsMobile = Identity.IsMobile;
 }
Beispiel #2
0
 public PictureController(IResize resize, IBoxStorage attic, IApiRequest dropbox)
 {
     _resize = resize;
     _attic = attic;
     _dropbox = dropbox;
 }
Beispiel #3
0
 public SearchController(IBoxPacker packer, IBoxStorage attic)
 {
     _packer = packer;
     _attic = attic;
 }