예제 #1
0
 public PhotoManager(IHostingEnvironment hostingEnvironment, string folderPath, string uploadPath)
 {
     Result     = new PhotoManagerResult();
     _host      = hostingEnvironment;
     UploadPath = uploadPath;
     FolderPath = folderPath;
 }
예제 #2
0
 public PhotoManager(IHostingEnvironment hostingEnvironment)
 {
     Result = new PhotoManagerResult();
     _host  = hostingEnvironment;
 }