public List <mstCar> ReadAll()
        {
            try
            {
                _uow.Open(DBConnection.BMIERP);

                List <mstCar> listCar = new List <mstCar>();
                var           repo    = new mstCarRepository(_uow);

                listCar = repo.ReadAllData().ToList();
                return(listCar);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                _uow.Dispose();
            }
        }