First Initial
This commit is contained in:
52
Common/CommonMethod.cs
Normal file
52
Common/CommonMethod.cs
Normal file
@@ -0,0 +1,52 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Design;
|
||||
using Microsoft.EntityFrameworkCore.Internal;
|
||||
using TodoAPI2.Models;
|
||||
using TTSW.EF;
|
||||
|
||||
namespace TestAPI01.Common
|
||||
{
|
||||
public class CommonMethod
|
||||
{
|
||||
public string Month_th(int i)
|
||||
{
|
||||
string[] month = new string[] { "มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม" };
|
||||
|
||||
return month[i - 1];
|
||||
}
|
||||
|
||||
public string shortMonth_th(int i)
|
||||
{
|
||||
string[] month = new string[] { "ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค." };
|
||||
|
||||
return month[i - 1];
|
||||
}
|
||||
|
||||
public string Month_en(int i)
|
||||
{
|
||||
string[] month = new string[] { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" };
|
||||
|
||||
return month[i - 1];
|
||||
}
|
||||
|
||||
public string shortMonth_en(int i)
|
||||
{
|
||||
string[] month = new string[] { "JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC" };
|
||||
|
||||
return month[i - 1];
|
||||
}
|
||||
|
||||
public string Year_th(int i)
|
||||
{
|
||||
var year = i + 543;
|
||||
|
||||
return year.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user