This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Methode die mir in Docuware File mit Metadaten Uploaded | |
| public static GapiResponse UploadFile(List<DWField> DWIndices, string documentpath, string filecabinetguid) | |
| { | |
| int docid = 0; | |
| try | |
| { | |
| //Vorher kontrollieren ob _GapiClient instanziert ist | |
| IFileCabinet filecabinet = _gapiClient.Organization.GetFileCabinet(new Guid(filecabinetguid)); | |
| IFileCabinetStorageCommand myfilecommand = filecabinet.Commands.newStorage(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Eisklettern | |
| public string lage { get; } | |
| public string startpunkt { get; } | |
| public string dauerh { get; } | |
| public string laengekm { get; } | |
| public string hoechsterpunkt { get; } | |
| public string hoehenunterschied { get; } | |
| public string aufstiegsmoeglichkeit { get; } | |
| public string karteliteratur { get; } | |
| public string schwierigkeitsgrad { get; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <remarks/> | |
| [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)] | |
| [System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)] | |
| public partial class Wiese | |
| { | |
| private string codeField; | |
| private string wiesennameField; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var mysorted = (from x in mysoapclient.AllGames().OrderBy(x => x.dPlayDate).ThenBy(x => x.tPlayTime) | |
| let y = x.Goals.OrderBy(z => z.iMinute) | |
| select new ServiceReferenceFootBallPool.tGameInfo | |
| { | |
| bChampion = x.bChampion, | |
| Cards = x.Cards, | |
| dPlayDate = x.dPlayDate, | |
| Goals = y.ToArray(), | |
| iId = x.iId, | |
| iRedCards = x.iRedCards, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Raven.Client; | |
| using Raven.Client.Document; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Globalization; | |
| using System.Net.Http; | |
| using System.IO; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ANSWER: | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <root> | |
| <header> | |
| <error> | |
| <code>0</code> | |
| <message>OK</message> | |
| </error> | |
| <result_id>ea7f1f00511c56fe3d2ddb35f96b2ddc</result_id> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var myareaorder = skiarea.Elements("Area").OrderBy(x => x.Attribute("Order").Value).ToList(); | |
| //Neu Gruppierung auf Skigebiets Area | |
| var liftlistjoined = (from lift in liftlist | |
| join area in myareaorder | |
| on lift.Element("Memberships").Elements("Membership").FirstOrDefault().Elements("Area").FirstOrDefault().Attribute("RID").Value equals area.Value | |
| orderby area.Attribute("Order").Value | |
| select new { lift, area}); | |
| foreach (var liftarea in liftlistjoined) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="container"> | |
| <img class="visible-md visible-lg img-responsive" src="images/dummies/24994680.footer-desktop.png"> | |
| <img class="visible-sm" src="images/dummies/72b10f00.footer-tablet.png"> | |
| <img class="visible-xs img-responsive" src="images/dummies/6e33156f.footer-mobile.png"> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [HttpPost, Route("api/Accommodation/Available/{language}/{boardfilter}/{arrival}/{departure}/{roominfo}/{bokfilter}/{seed}")] | |
| public async Task<Result<Accommodation>> PostAvailableAsync(string language, string boardfilter, string arrival, string departure, string roominfo, string bokfilter, int seed, [FromBody] string idfilter) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [HttpGet, Route("api/Huette/All/{elements}")] | |
| public IEnumerable<Huette> Get(int elements) | |
| { | |
| //using (var session = RavenSession.OpenSession()) | |
| //{ | |
| // var huettenliste = session.Query<Huette>().Take(elements).OrderBy(x => x.Name).ThenBy(x => x.Region); | |
| // return huettenliste.ToList(); | |
| //} |