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 337B

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