Ejemplo n.º 1
0
 public FilesHelper(String StorageRoot)
 {
     this.StorageRoot     = StorageRoot;
     _portalSosRepository = new PortalSosRepository(db);
     _portalSosService    = new PortalSosService(_portalSosRepository);
     _mailHelper          = new MailHelper();
 }
Ejemplo n.º 2
0
 public FilesHelper(String DeleteURL, String DeleteType, String StorageRoot, String UrlBase, String tempPath, String serverMapPath)
 {
     this.DeleteURL       = DeleteURL;
     this.DeleteType      = DeleteType;
     this.StorageRoot     = StorageRoot;
     this.UrlBase         = UrlBase;
     this.tempPath        = tempPath;
     this.serverMapPath   = serverMapPath;
     _portalSosRepository = new PortalSosRepository(db);
     _portalSosService    = new PortalSosService(_portalSosRepository);
     _mailHelper          = new MailHelper();
 }
Ejemplo n.º 3
0
 public GeneralHelper()
 {
     _portalSosRepository = new PortalSosRepository(db);
     _portalSosService    = new PortalSosService(_portalSosRepository);
 }
Ejemplo n.º 4
0
 public FilesHelper()
 {
     _portalSosRepository = new PortalSosRepository(db);
     _portalSosService    = new PortalSosService(_portalSosRepository);
     _mailHelper          = new MailHelper();
 }