public MonthlyIncomeActionView(IMonthlyIncomeRepository monthlyIncomeRepository)
 {
     _monthlyIncomeRepository = monthlyIncomeRepository;
 }
 public MonthlyIncomeEntityForm(IMonthlyIncomeRepository monthlyIncomeRepository)
 {
     InitializeComponent();
     _monthlyIncomeRepository = monthlyIncomeRepository;
     this.Text = "Venit lunar nou";
 }