What are DAO, MB, TO, SERVICE, MODEL, CONVERTER and HELPER classes?

Asked

Viewed 208 times

-2

In the projects of the company in which I work I see several classes with these appointments, as I am beginner in programming I’m not sure what they mean. Could you clear me of that doubt ?

1 answer

1

My answer is not complete, but I believe it will help. There are names there that are probably used only by your company, the ones I know are:

DAO - Data Access Object. Basically it is the project that abstracts everything related to access to data from the application.

MODEL - Probably related to MVC, Model View Controller, Model or Model in your case is the object and its features, a record form template has:
string Email{get;set;}
string ConfirmaçãoEmail{get;set;}
string Nome{get;set;}
string Senha{get;set;}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.