Sample create entity POS d365 typescript - The Strategic ERP Advisor

The Strategic ERP Advisor

Strategic ERP Solutions and Consulting

Breaking

Friday, October 9, 2020

Sample create entity POS d365 typescript

 Sample create entity POS d365 typescript 
Song Nghia - Technical Consultant



export interface ISelectDate {
    Month: Months;
    Date: number;
    Year: number;
    ToMonth: Months;
    ToDate: number;
    ToYear: number;
}

export interface IAvailableMonth {
    month: Months;
    displayText: string;
}

export enum Months {
    January = 1,
    February = 2,
    March = 3,
    April = 4,
    May = 5,
    June = 6,
    July = 7,
    August = 8,
    September = 9,
    October = 10,
    November = 11,
    December = 12
}

No comments:

Post a Comment