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.

17 lines
382 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Shentun.Peis.Localization;
  5. using Volo.Abp.Application.Services;
  6. namespace Shentun.Peis;
  7. /* Inherit your application services from this class.
  8. */
  9. public abstract class PeisAppService : ApplicationService
  10. {
  11. protected PeisAppService()
  12. {
  13. LocalizationResource = typeof(PeisResource);
  14. }
  15. }