public static User_MasterCollection GetByUser_Id(int User_Id)
        {
            User_MasterCollection obj = new User_MasterCollection();

            obj.MapObjects(new User_MasterDataService().User_Master_GetByUser_Id(User_Id));
            return(obj);
        }
        public static User_MasterCollection GetAll()
        {
            User_MasterCollection obj = new User_MasterCollection();

            obj.MapObjects(new User_MasterDataService().User_Master_GetAll());
            return(obj);
        }