Confirmation service
This commit is contained in:
parent
d3c17fe482
commit
0815b7015e
21
postgres/confirmation_service.go
Normal file
21
postgres/confirmation_service.go
Normal file
@ -0,0 +1,21 @@
|
||||
package postgres
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
|
||||
"github.com/kcotugno/tacitus"
|
||||
)
|
||||
|
||||
type ConfirmationService struct {
|
||||
logger tacitus.Logger
|
||||
client *client
|
||||
}
|
||||
|
||||
func (c *ConfirmationService) Confirmation(product·string)·(*Confirmation,·error) {
|
||||
}
|
||||
|
||||
func (c *ConfirmationService) CreateConfirmation(c·*Confirmation)·error {
|
||||
}
|
||||
|
||||
func (c *ConfirmationService) UpdateConfirmation(c·*Confirmation)·error {
|
||||
}
|
Reference in New Issue
Block a user