Remove RateS

This commit is contained in:
ionutboangiu
2021-03-31 11:46:15 +03:00
committed by Dan Christian Bogos
parent cc39a99a2c
commit 3197b3a458
78 changed files with 1583 additions and 18512 deletions

View File

@@ -129,9 +129,6 @@ type DataDB interface {
GetDispatcherHostDrv(string, string) (*DispatcherHost, error)
SetDispatcherHostDrv(*DispatcherHost) error
RemoveDispatcherHostDrv(string, string) error
GetRateProfileDrv(string, string) (*utils.RateProfile, error)
SetRateProfileDrv(*utils.RateProfile) error
RemoveRateProfileDrv(string, string) error
GetActionProfileDrv(string, string) (*ActionProfile, error)
SetActionProfileDrv(*ActionProfile) error
RemoveActionProfileDrv(string, string) error
@@ -184,7 +181,6 @@ type LoadReader interface {
GetTPChargers(string, string, string) ([]*utils.TPChargerProfile, error)
GetTPDispatcherProfiles(string, string, string) ([]*utils.TPDispatcherProfile, error)
GetTPDispatcherHosts(string, string, string) ([]*utils.TPDispatcherHost, error)
GetTPRateProfiles(string, string, string) ([]*utils.TPRateProfile, error)
GetTPActionProfiles(string, string, string) ([]*utils.TPActionProfile, error)
}
@@ -210,7 +206,6 @@ type LoadWriter interface {
SetTPChargers([]*utils.TPChargerProfile) error
SetTPDispatcherProfiles([]*utils.TPDispatcherProfile) error
SetTPDispatcherHosts([]*utils.TPDispatcherHost) error
SetTPRateProfiles([]*utils.TPRateProfile) error
SetTPActionProfiles([]*utils.TPActionProfile) error
}