You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PkGuidController.cs 352B

12345678910111213
  1. using Luticate2.Utils.Controllers;
  2. using TestUtils.Dbo.PkGuid;
  3. using WebApiUtils.Business;
  4. namespace WebApiUtils.Controllers
  5. {
  6. public class PkGuidController : LuCrudController<PkGuidBusiness, PkGuidAddDbo, PkGuidDbo, PkGuidAddDbo, string>
  7. {
  8. public PkGuidController(PkGuidBusiness busines) : base(busines)
  9. {
  10. }
  11. }
  12. }