public static async getUserById(id: string): Promise<DBUserSchema> {
        return await (this.getModel().findOne({id}));
    }