public MessageResult CheckStockInfo(int stockId, string checkPerson, int storeId) { try { var result = stockBLL.CheckStockInfo(stockId, checkPerson, stockId); return(MessageResult.Success(result)); } catch (Exception ex) { return(MessageResult.Fail(ex.Message)); } }