public bool CreateBlock(BlockModel model) { try { var blockStore = new BlockStore(); var dt = blockStore.CreateBlock(model); if (dt) { return(true); } else { return(false); } } catch (Exception) { return(false); } }