-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 ?
-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
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 java classes
You are not signed in. Login or sign up in order to post.
Related: How the DAO Standard works? and Difference between Library, Helper and What is a DTO?
– rray
You want to know the meaning of each or want to know in general why some classes have these pre/suffixes?
– Maniero