SQL View - Add user and grant permissions

I have a SQL View that I need to add to a clients server. I need help adding users to the permissions and granting access to the sql view. Can I get some assistance with this?

I need to add these two users: mlreport and mltab. Both set to Database role. I need these 2 users set with Grant permissions. Can someone provide me with a sample syntax on this with a generic sql view, so I can add it to my create view syntax?

Both set to Database role.

I assume you mean "db_owner" role?

Do you want these users associated with a SQL login or do you want self-contained in that db users?

yes with db owner and SQL login.

CREATE LOGIN [mlreport] WITH PASSWORD = 'whatever_you_want';
EXEC sys.sp_addsrvrolemember 'mlreport', 'bulkadmin'

USE db_name;
CREATE USER [mlreport] FROM LOGIN [mlreport];
GRANT CONNECT TO [mlreport];
EXEC sp_addrolemember 'db_owner', 'mlreport';

If that runs successfully, naturally replace "mlreport" with "mltab" to create the other user.

Thanks Scott, I appreciate it!