func (p AccountService) AddAccount(u model.Account) {
	h := logic.NewAccountHandler()
	h.AddAccount(u)
}
func (p AccountService) DeactivateAccount(Id string) {
	h := logic.NewAccountHandler()
	h.DeactivateAccount(Id)
}
func (p AccountService) GetAccount(Id string) model.Account {
	h := logic.NewAccountHandler()
	return h.GetAccount(Id)
}