This commit is contained in:
Suphonchai Phoonsawat 2023-06-28 12:58:45 +07:00
parent ea6cfb0e98
commit b0228a5277
8 changed files with 9381 additions and 112 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Partial.Test
{
public partial class PartialClass
{
public string GetString()
{
return "Return from class1";
}
}
}

View file

@ -1,10 +1,5 @@
using BMA.EHR.Domain.Common;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.API.Command
{