company under development

This commit is contained in:
Sas Andy
2024-05-08 15:56:44 +07:00
parent 9ae7e495c6
commit 1965359fd5
19 changed files with 296 additions and 29 deletions

View File

@@ -0,0 +1,15 @@
package corporate_services
import "cpone/db"
type ServicesCompany struct {
CompanyStore db.AppStore
}
func NewServicesCompany(uStore db.AppStore) *ServicesCompany {
return &ServicesCompany{
CompanyStore: uStore,
}
}