public AuthenticateController(IAuthenticateBS authenticateBS)
 {
     if (_authenticate == null)
     {
         _authenticate = authenticateBS;
     }
 }
 public AuthenticateController(IAuthenticateBS authenticateBS)
 {
     if (_authenticate == null)
     {
         LogManager.Configuration.Variables["ControllerName"] = "AuthenticateController";
         logger.Info("Authenticate controller init........");
         _authenticate = authenticateBS;
     }
 }