18 lines
397 B
C#
18 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using KonSoft.Payment.Localization;
|
|
using Volo.Abp.Application.Services;
|
|
|
|
namespace KonSoft.Payment;
|
|
|
|
/* Inherit your application services from this class.
|
|
*/
|
|
public abstract class PaymentAppService : ApplicationService
|
|
{
|
|
protected PaymentAppService()
|
|
{
|
|
LocalizationResource = typeof(PaymentResource);
|
|
}
|
|
}
|