storj/pkg/satellite/companies.go
2018-11-09 14:05:24 +02:00

41 lines
1.1 KiB
Go

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package satellite
import (
"context"
"time"
"github.com/skyrings/skyring-common/tools/uuid"
)
// Companies exposes methods to manage Company table in database.
type Companies interface {
// Get is a method for querying company from the database by id
Get(ctx context.Context, id uuid.UUID) (*Company, error)
// Get is a method for querying company from the database by user id
GetByUserID(ctx context.Context, userID uuid.UUID) (*Company, error)
// Insert is a method for inserting company into the database
Insert(ctx context.Context, company *Company) (*Company, error)
// Delete is a method for deleting company by Id from the database.
Delete(ctx context.Context, id uuid.UUID) error
// Update is a method for updating company entity
Update(ctx context.Context, company *Company) error
}
// Company is a database object that describes Company entity
type Company struct {
ID uuid.UUID
UserID uuid.UUID
Name string
Address string
Country string
City string
State string
PostalCode string
CreatedAt time.Time
}