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
namespace PetaPoco.FSharpOptions | |
open PetaPoco | |
open System | |
type OptionConverterAttribute() = | |
inherit ValueConverterAttribute() | |
with | |
override __.ConvertFromDb(value: obj) = | |
let toOption (v: 'T) = |
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
codeunit 50120 "ContactName" | |
{ | |
local procedure CalculateName(var Contact: Record Contact) Name: Text[100] | |
var | |
NewSurname30: Text[30]; | |
NewFirstname61: Text[61]; | |
NewName93: Text[93]; | |
begin | |
if Contact.Surname <> '' then | |
NewSurname30 := Contact.Surname; |
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
<script> | |
var resources = <%=Resources%>; | |
var viewModel = {localize:resources}; | |
ko.applyBindings(viewModel); | |
</script> | |
<span data-bind="text:localize.Message"></span> | |
<span data-bind="text:localize.Message_Help"></span> | |
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 DotNetNuke.Common; | |
using DotNetNuke.Entities.Modules; | |
using DotNetNuke.Entities.Portals; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Runtime.CompilerServices; | |
namespace AnyNamespace | |
{ |