public BusinessLayer(SwiftMsgIncRepository swiftMsgIncRepository, SwiftMsgTxtRepository swiftMsgTxtRepository)
 {
     _swiftMsgIncRepository = swiftMsgIncRepository;
     _swiftMsgTxtRepository = swiftMsgTxtRepository;
 }
 public BusinessLayer()
 {
     _swiftMsgIncRepository = new SwiftMsgIncRepository();
     _swiftMsgTxtRepository = new SwiftMsgTxtRepository();
 }