Posts by Samuel Gomes • 72 points
5 posts
-
0
votes0
answers436
viewsQ: Nhibernate error: No persister for
I would like some help regarding the error presented when I try to record records with Nhibernate by XML mapping. The project has separate layers. In the domain project, is my entity: namespace…
-
1
votes1
answer338
viewsQ: How to take a Domain Entity method to higher layers
Hello, I have the following domain entity. public class Cliente{ [Key] public string CPF{get; set;} public string Nome{get; set;} //Outras propriedades public void Sacar(Conta conta, decimal valor){…
-
2
votes1
answer481
viewsQ: Ajax.Beginform returning Partialview as View
Goodnight! I’m working on a Bed Management project. In a particular View, I am displaying the registered Wards, and for filtering purposes, a field where one can research by the name of the…
-
2
votes2
answers132
viewsA: Problem with second degree equation program
The problem is in logic. You assumed that the user will first insert the hypotenuse, and then the catheters. The largest number inserted should be checked and stored in the hip variable. Here’s an…
canswered Samuel Gomes 72 -
0
votes1
answer101
viewsQ: Doubt about Entity Modeling
I have an entity called Requests that satisfies the following business: A request is made by an Employee(Entity), then it is changed by another Employee and then confirmed by a third Employee. In a…