mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 06:08:16 +00:00
41 lines
812 B
Go
41 lines
812 B
Go
package services
|
|
|
|
import (
|
|
"context"
|
|
"wallet-api/pkg/models"
|
|
"wallet-api/pkg/utl/common"
|
|
|
|
"github.com/go-pg/pg/v10"
|
|
)
|
|
|
|
type SubscriptionTypeService struct {
|
|
Db *pg.DB
|
|
}
|
|
|
|
// Inserts new row to subscription type table.
|
|
func (as *SubscriptionTypeService) New(ctx context.Context, body *models.NewSubscriptionTypeBody) *models.SubscriptionType {
|
|
db := as.Db.WithContext(ctx)
|
|
|
|
tm := new(models.SubscriptionType)
|
|
|
|
tm.Init()
|
|
tm.Name = body.Name
|
|
tm.Type = body.Type
|
|
|
|
db.Model(tm).Insert()
|
|
|
|
return tm
|
|
}
|
|
|
|
// Gets all rows from subscription type table.
|
|
func (as *SubscriptionTypeService) GetAll(ctx context.Context, embed string) *[]models.SubscriptionType {
|
|
db := as.Db.WithContext(ctx)
|
|
|
|
wm := new([]models.SubscriptionType)
|
|
|
|
query := db.Model(wm)
|
|
common.GenerateEmbed(query, embed).Select()
|
|
|
|
return wm
|
|
}
|