berikut ini adalah cara akses freeday dengan API c# di data dolphin sebelumnya anda harus memiliki compiled project addonsVC.EnumHelper, addonsVC.MapHelper, dan addonsVC.Project.HRM using addonsVC.EnumHelper; using addonsVC.MapHelper; using AddonsVC.Project.HRM; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace pjGetFreeDay { class Program { static void Main(string[] args) { MenampilkanHariLibur(); } static void MenampilkanHariLibur() { […]

Read More

c# business layer

  • Feb 04, 2022

in ax, we do have business layer call onion layer, the purpose is to separate the business layer for customization on users the concept is, layer sys will be overridden by layer gls on so on until layer usr all table and all function that customized will be replaced on those layer now, we make […]

Read More

thanks to fguaman for share the source in github, you can copy the source here but for backup purposes, i will copy paste it here c# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security.Cryptography; /** * * @author fguaman */ public abstract class AES { public static String doEncryptAES(String plainText, String key) { […]

Read More