View SomePowershellForDan.ps1
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
$sometext = "#;FirstName LastName"; | |
$regex = "(#;)"; | |
[System.Text.RegularExpressions.Regex]::Replace($sometext, $regex, ""); |
View snippet from web.config
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
<appSettings> | |
<add key="webpages:Version" value="3.0.0.0" /> | |
<add key="webpages:Enabled" value="false" /> | |
<add key="documentDb:Endpoint" value="https://{url}.documents.azure.com:443/"/> | |
<add key="documentDb:PrimaryKey" value={primarykey} | |
<add key="documentDb:SecondaryKey" value="{secondarykey} | |
<add key="documentDb:DatabaseName" value="invoicedatabase" /> | |
<add key="documentDb:DocumentCollectionName" value="invoicesdocumentcollection" /> | |
</appSettings> |
View GetAll-Snippet-InvoiceRepository.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
private IOrderedQueryable<InvoiceForm> GetAllQuery() | |
{ | |
var feedOptions = new FeedOptions { MaxItemCount = -1 }; | |
var documentCollectionUri = new Uri(_dataContext.DocumentCollection.DocumentCollection.AltLink, UriKind.RelativeOrAbsolute); | |
var query = _dataContext.Database.Client.CreateDocumentQuery<InvoiceForm>(documentCollectionUri, feedOptions); | |
return query; | |
} |
View InvoiceController.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 System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
using System.Web.Http; | |
using Itsp365.InvoiceFormApp.Api.Models.Entities; | |
using Itsp365.InvoiceFormApp.Api.Repositories; |
View InvoiceRepository.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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using System.Web; | |
using Itsp365.InvoiceFormApp.Api.Models.Entities; | |
using ITSP365.InvoiceFormApp.Api.DataAccess; | |
using Microsoft.ApplicationInsights; | |
using Microsoft.Azure.Documents; | |
using Microsoft.Azure.Documents.Client; |
View InvoiceDataContext.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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using System.Web; | |
namespace ITSP365.InvoiceFormApp.Api.DataAccess | |
{ | |
public class InvoiceDataContext | |
{ |
View InvoiceDocumentCollection.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 Microsoft.Azure.Documents; | |
using Microsoft.Azure.Documents.Client; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Threading.Tasks; | |
using System.Web; | |
namespace ITSP365.InvoiceFormApp.Api.DataAccess |
View InvoiceDatabase.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 Microsoft.Azure.Documents; | |
using Microsoft.Azure.Documents.Client; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Net; | |
using System.Threading.Tasks; | |
using Microsoft.ApplicationInsights; |
View DatabaseConfig.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 System.Collections.Specialized; | |
using System.Configuration; | |
using System.Linq; | |
namespace ITSP365.InvoiceFormApp.Api.DataAccess | |
{ | |
internal class DatabaseConfig | |
{ | |
internal string DatabaseEndPoint { | |
get |
View edit-invoice.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
<div class="container"> | |
<div class="row"> | |
<div class="col-md-4 col-sd-12"> | |
<button class="btn btn-default" type="button" title="Save" ng-click="saveInvoice()">Save</button> | |
| |
<button class="btn" type="button" title="Cancel" ng-click="cancel()">Cancel</button> | |
</div> | |
<div class="col-md-8 col-sd-12"> | |
<span ng-show="status !== ''">{{status}}</span> |
NewerOlder