//------------------------------------------ #endregion #region --------------GetPhotoOriginal-------------- public static string GetPhotoOriginal(object messageID, object photoExtension, object ownerName, object ModuleTypeID, object CategoryID) { if (photoExtension.ToString().Length > 0) { return(DCSiteUrls.GetPath_MessagesPhotoOriginals((string)ownerName, (int)ModuleTypeID, (int)CategoryID, (int)messageID) + CreatePhotoName((int)messageID) + photoExtension); } else { return(SiteDesign.NoPhotoPath); } }