View branches.json
This file contains 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
[ | |
{ | |
"Id": 1, | |
"Name": "Čepkov", | |
"Address": "Tyršovo nábř. 5496 ", | |
"City": "Zlín", | |
"PostalCode": "760 01", | |
"State": "Zlinsky kraj", | |
"CountryId": 1, | |
"Latitude": 49.229041, |
View restdbweb.html
This file contains 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="description" content="Minimal HTML5 Document Showing How to use RestDB API and jQuery"> | |
<title>RestDB jQuery example</title> | |
<script src="https://code.jquery.com/jquery-latest.js"></script> | |
</head> | |
<body> | |
<h1>RestDB jQuery example</h1> |
View products.json
This file contains 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
[ | |
{ | |
"Id": 0, | |
"Name": "Brown eggs", | |
"ReleaseDate": "2022-07-05", | |
"OriginalPrice": 28.1, | |
"Discount": 40, | |
"PictureUrl": "https://raw.githubusercontent.com/wedeploy-examples/supermarket-web-example/master/ui/assets/images/0.jpg" | |
}, | |
{ |
View PropertyTemplate.snippet
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
<CodeSnippet Format="1.0.0"> | |
<Header> | |
<Title>MVVM Property</Title> | |
<Author>Luis</Author> | |
<Description>Creates a View Model Full Property.</Description> | |
<Shortcut>mvvmprop</Shortcut> | |
</Header> | |
<Snippet> |
View BarcodeAndroid.cs
This file contains 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 Android; | |
using Android.App; | |
using Android.Content; | |
using Android.Graphics; | |
using Android.Net; | |
using Android.OS; | |
using Android.Provider; | |
using Android.Runtime; | |
using Android.Support.V4.App; | |
using Android.Views; |
View function.json
This file contains 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
{ | |
"bindings": [ | |
{ | |
"authLevel": "function", | |
"name": "req", | |
"type": "httpTrigger", | |
"direction": "in", | |
"route": "delete-student/{id}/{faculty}", | |
"methods": [ | |
"get", |
View function.json
This file contains 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
{ | |
"bindings": [ | |
{ | |
"authLevel": "anonymous", | |
"name": "req", | |
"type": "httpTrigger", | |
"direction": "in", | |
"route": "update-student/{id}/{faculty}", | |
"methods": [ | |
"get", |
View function.json
This file contains 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
{ | |
"bindings": [ | |
{ | |
"name": "req", | |
"authLevel": "anonymous", | |
"methods": [ | |
"get", | |
"post" | |
], | |
"direction": "in", |
View function.json
This file contains 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
{ | |
"bindings": [ | |
{ | |
"authLevel": "anonymous", | |
"name": "req", | |
"type": "httpTrigger", | |
"direction": "in", | |
"methods": [ | |
"get", | |
"post" |
View Student class
This file contains 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
public class Student | |
{ | |
public string Id { get; set; } | |
public string Faculty { get; set; } | |
public string Name { get; set; } | |
public int Semester { get; set; } | |
} |
NewerOlder