Exemplo n.º 1
0
        public ResultModels InsertIndustry(List <IndustryModels> lstInfo)
        {
            var result = new ResultModels();

            if (lstInfo != null && lstInfo.Any())
            {
                IndustryFactory IndustryFactory = new IndustryFactory();
                //result.IsOk = IndustryFactory.Insert(lstInfo);
            }
            return(result);
        }
Exemplo n.º 2
0
 public IndustryController()
 {
     _industryF = new IndustryFactory();
 }