Confirmation service

This commit is contained in:
Kevin Cotugno 2017-09-23 10:19:43 -07:00
parent d3c17fe482
commit 0815b7015e

View 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 {
}