public BallotImportsController(IProductServices product, IBallotImportServices ballotImport)
 {
     _product      = product;
     _ballotImport = ballotImport;
 }
 public BallotImportDetailsController(IProductServices product, IBallotImportServices ballotImport, IBallotImportDetailServices ballotImportDetail)
 {
     _product            = product;
     _ballotImport       = ballotImport;
     _ballotImportDetail = ballotImportDetail;
 }