Ejemplo n.º 1
0
        public static string GetImageColorPathAbsolut(ColorImageType type, string photoPath)
        {
            if (string.IsNullOrWhiteSpace(photoPath))
            {
                return(GetPathAbsolut(PhotoFoldersPath[FolderType.Color]) + ColorPhotoPrefix[type]);
            }

            return(GetPathAbsolut(PhotoFoldersPath[FolderType.Color]) + ColorPhotoPrefix[type] + photoPath);
        }
Ejemplo n.º 2
0
 public static string GetImageColorPath(ColorImageType type, string photoPath, bool isForAdministration)
 {
     return(GetPath(PhotoFoldersPath[FolderType.Color], isForAdministration) + ColorPhotoPrefix[type] + photoPath);
 }